	  //new ypSlideOutMenu("number menu", "slide position", left, top, width, height)
		new ypSlideOutMenu("menu1", "down", 310, 108, 170, 360)
		new ypSlideOutMenu("menu2", "down", 495, 108, 170, 360)
		new ypSlideOutMenu("menu3", "down", 612, 108, 170, 360)
		new ypSlideOutMenu("menu4", "down", 670, 108, 170, 360)
		new ypSlideOutMenu("menu5", "down", 800, 108, 170, 360)
		new ypSlideOutMenu("menu6", "down", 830, 108, 170, 360)

	function menuOffset(){
		if (navigator.product == 'Gecko'){	
			mypos = ((document.body.clientWidth - document.getElementById("maintable").clientWidth) / 2) - 8;
			}
		else{
			mypos = ((document.body.clientWidth - maintable.clientWidth) / 2) - 8;
			}
		if (mypos < 0){
			mypos = 0;
			}
		menu1Container.style.left = parseInt(mypos)+310;
		menu2Container.style.left = parseInt(mypos)+495;
		menu3Container.style.left = parseInt(mypos)+612;
		menu4Container.style.left = parseInt(mypos)+670;
		menu5Container.style.left = parseInt(mypos)+800;
		menu6Container.style.left = parseInt(mypos)+830;
	}
