// JavaScript Document



function navEvent(id){

	obj = document.getElementById(id);

	for(c=0; c < obj.childNodes.length; c++){

		objNode = obj.childNodes[c];

		if (objNode.nodeName == "LI"){

			objNode.onmouseover = function(){this.className="over";}

			objNode.onmouseout = function(){this.className="";}

		}

	}

}



function topNav(id){

	objNav = document.getElementById(id);

	objNav.onmouseover = function(){this.src = "images/menu/" + id + "_over.jpg";}

	objNav.onmouseout = function(){this.src = "images/menu/" + id + ".jpg";}

}

function pre(){
	var password= prompt("Please input your password", "");

	if (password=='#manfred='){
			window.location='http://www.oregano-dubai.com/pdf/oregano_general_presentation.pdf';
	}else{
		alert('Invalid Password');
	}
	
}


window.onload = function(){topNav("about"); topNav("menu"); topNav("mood"); topNav("location"); topNav("contact");}




