/**
 * @author rbraendli
 */

 function countryList(countryList) {
 	countryListMenu = document.getElementById('occCountryList');
	countryListCurrent = document.getElementById('occCountryListCurrent');
	
	if(countryListMenu.style.display=="block") {
		out(countryListCurrent.firstChild.name);
		countryListMenu.style.display="none";
	}
	else {
		over(countryListCurrent.firstChild.name);
		countryListMenu.style.display="block";
	}
 }

 function clearCountryList() {
	countryListCurrent = document.getElementById('occCountryListCurrent');
	countryListCurrent.removeAttribute("href");
	countryListCurrent.onmouseover = function(){
		
	}
	countryListCurrent.onmouseout = function(){
		
	}
 }

