// SHOW THE DROP DOWN MENUS
function show(elmnt) {	
	document.getElementById(elmnt).style.display = "block";

	if (elmnt == "popup_services") {
		document.getElementById("menu_services").style.backgroundPosition = "0 -27px";
	}
	if (elmnt == "popup_projects") {
		document.getElementById("menu_projects").style.backgroundPosition = "0 -27px";
	}
}

// HIDE THE DROP DOWN MENUS
function hide(elmnt) {
	document.getElementById(elmnt).style.display = "none";
	document.getElementById("menu_services").style.backgroundPosition = "0 0";
	document.getElementById("menu_projects").style.backgroundPosition = "0 0";
}

