var menuDiv	= "langMenuDiv";
var mActionType	=	null;
var MENU_PATH_TO_ROOT = "";
function showMenu(aActionType){
	hideMenu();
	mActionType	=	aActionType;
	if(mActionType == 'exams')
	{
		menuDiv	=	"langMenuDiv";
	}
	if(mActionType == 'forumChat')
	{
		menuDiv	=	"chatForumMenuDiv";
	}
	
	var divObj = document.getElementById(menuDiv);
	
	divObj.style.visibility='visible';
	divObj.style.display='block';
	divObj.style.position="absolute";
	//divObj.style.top = event.clientY + document.body.scrollTop;
	divObj.style.top  = event.y - event.offsetY + document.body.scrollTop  ;
	divObj.style.left = event.x - event.offsetX + 2 -  125;
	divObj.style.zIndex = 100;
	setTimeout("hideMenu()",5000);
}

function hideMenu(){
	var divObj = document.getElementById(menuDiv);
	divObj.style.visibility='hidden';
}

function trOver(aTr){
	aTr.className = 'floatMenuOn';
	isMouseInDiv = true;
}

function trOut(aTr){
	aTr.className = 'floatMenuOut';
}


function onLangClick(aLang){
	hideMenu();
	if(mActionType == 'exams'){
		openExams(aLang);
	}
	
}

function openExams(aLang){
	document.location.href=MENU_PATH_TO_ROOT + "select_quiz.asp?lang=" + aLang
}

function onForumClick(){
	document.location.href=MENU_PATH_TO_ROOT + "r_forum.asp";
}

function onChatClick(){
	//document.location.href=MENU_PATH_TO_ROOT + "Chat/";
	window.open(MENU_PATH_TO_ROOT + "Chat/",'TeoriaSite','width=600,height=500');
}
