NormalMenuItemHandler=function(){

}
NormalMenuItemHandler.prototype.fireMenuItemSelected=function(selectedItem){
	var subMenuDiv = document.getElementById("subMenuDiv");
	if(subMenuDiv){
	subMenuDiv.style.top="0px";
	subMenuDiv.style.left="0px";
		while(subMenuDiv.hasChildNodes()){
			subMenuDiv.removeChild(subMenuDiv.firstChild);
		}
	}
	
	

	var link = selectedItem.link;
	if(link != "." && !(link.indexOf("http") > -1)){
		window.parent.gamen1.location.href = link;
	}else{
		window.parent.location.href = link;
	}
}
NormalMenuItemHandler.prototype.fireTopMenuItemSelected=function(selectedItem){
	openPage(selectedItem.link);
}