var midW;
var midH;

if (parseInt(navigator.appVersion)>3) {
 	if (navigator.appName=="Netscape") {
  		midW = window.innerWidth / 2;
  		midH = window.innerHeight / 2;
	}
	if (navigator.appName.indexOf("Microsoft")!=-1) {
		midW = document.body.offsetWidth / 2 + 18;
		midH = document.body.offsetHeight;
	}
	else 
	{
		midW = document.body.offsetWidth / 2 + 30;
		midH = document.body.offsetHeight;
	}
}

var menus = [
	new ypSlideOutMenu("menu1", "down", 310, 78, 108, 59),
	new ypSlideOutMenu("menu2", "down", midW - 500, 135, 200, 700),
	new ypSlideOutMenu("menu3", "down", midW - 240, 135, 120, 300),
	//new ypSlideOutMenu("menu4", "down", 237, 78, 170, 21)
	new ypSlideOutMenu("menu4", "down", midW + 200, 158, 170, 300)
]

for (var i = 0; i < menus.length; i++) {
	menus[i].onactivate = new Function("document.getElementById('act" + i + "').className='active';");
	menus[i].ondeactivate = new Function("document.getElementById('act" + i + "').className='';");
}

ypSlideOutMenu.writeCSS();
