function menu_onmouseover(item,expand,child,item1,child2,item2) {
	if (expand=="0") {
		document.getElementById(item).style.color="#FFFFFF";
		if (child!=null) {
			document.getElementById(child).style.visibility="visible";
			document.getElementById(item1).style.color="#FFFFFF";
			if (child2!=null) {
				document.getElementById(child2).style.visibility="visible";
				document.getElementById(item2).style.color="#FFFFFF";

				}
			}
		}
	else {
		if (expand=="1") {
		document.getElementById(item).style.color="#FFFFFF";
		document.getElementById(child).style.visibility="visible";
		}
		else {
			document.getElementById(item).style.color="#FFFFFF";
			document.getElementById(child).style.visibility="visible";
			document.getElementById(item1).style.color="#FFFFFF";
			document.getElementById(child2).style.visibility="visible";
			
		}
	}
}

function menu_onmouseout(item,expand,child,item1,child2,item2) {
	if (expand=="0") {
		document.getElementById(item).style.color="#000";
		if (child!=null) {
			document.getElementById(child).style.visibility="hidden";
			document.getElementById(item1).style.color="#000";
			if (child2!=null) {
				document.getElementById(child2).style.visibility="hidden";
				document.getElementById(item2).style.color="#000";

				}
		}
		}
	else {
				if (expand=="1") {
		document.getElementById(item).style.color="#000";
		document.getElementById(child).style.visibility="hidden";
		}
		else {
			document.getElementById(item).style.color="#000";
			document.getElementById(child).style.visibility="hidden";
			document.getElementById(item1).style.color="#000";
			document.getElementById(child2).style.visibility="hidden";
			
		}
	}
}

function menu_click(page,ext) {
	if (page=="wordpress") {
		window.location="http://hyaets.com/"+page;
	}
	else {
	 	if (page=="Gallery") {
			window.location="http://hyaets.com/"+page;
		}
	 	else {
			if (page=="subscribe") {
			window.location="http://hyaets.list-manage.com/subscribe?u=005bd702b24b086ee3609f35f&id=8efa8efed0"
		}
		else {
			window.location="http://hyaets.com/"+page+".html";
		}
		
	}
	
}
}