// JavaScript Document


function menuEventListener(opened){
	if(document.getElementById("avatarPanel") && opened){
		document.getElementById("avatarPanel").style.visibility = "hidden";
	}
	if(document.getElementById("avatarPanel") && !opened){
		document.getElementById("avatarPanel").style.visibility = "visible";
	}
}

function registerVisitorsClick(link, facebook){
	loadHtmlDoc("functions.php?method=registerVisitorsClick&college=" + college + "&link=" + link + "&facebook=" + facebook);
	return true;
}
