var allowPageClickToClose = 'yes';  //used for allowing the close of the language dropdown on the click of the page


function hideShowLanguageList(id, id2) {
if(document.getElementById(id).className=="langNormal") {
   document.getElementById(id).className="langMouseClick";
   document.getElementById(id2).className="langButtonClicked";
   document.getElementById('langAreaDiv').className="langDropDownDivClicked";
   document.getElementById('closeButton').className="closeButtonMenuOpen";
   allowPageClickToClose = 'no';
} else {
   document.getElementById(id).className="langNormal";
   //document.getElementById(id2).className="langButtonMouseOver";
   document.getElementById('langAreaDiv').className="langDropDownDiv";
   document.getElementById('closeButton').className="closeButtonMenuClosed";
   document.getElementById('langButton').className="langButtonNormal";
}
}


function hideLanguageList(id, id2) {
	if(document.getElementById(id).className != "langNormal") {
		if(allowPageClickToClose == 'yes')
   		{
		    document.getElementById(id).className="langNormal";
		    //document.getElementById(id2).className="langButtonMouseOver";
		    document.getElementById('langAreaDiv').className="langDropDownDiv";
		    document.getElementById('closeButton').className="closeButtonMenuClosed";
		    document.getElementById('langButton').className="langButtonNormal";
        }
        allowPageClickToClose = 'yes';
    }
}


function langButtonMouseOver(id, id2) {

if(document.getElementById(id).className=="langButtonNormal") {
	document.getElementById(id).className="langButtonMouseOver";
} else {
	document.getElementById(id).className="langButtonNormal";
}

if (document.getElementById(id2).className=="langMouseClick") {
	document.getElementById(id).className="langButtonClicked";
}
}

function langButtonMouseOut(id, id2) {
document.getElementById(id).className = "langButtonNormal";
  
if (document.getElementById(id2).className=="langMouseClick") {
	document.getElementById(id).className="langButtonClicked";
}

}
