var myOffset1 = -402;

		// the number you pass to initLeft doesn't matter since it will get
		// changed onactivate
		//var myMenu = new ypSlideOutMenu("menu1", "down", 0, 25, 180, 200)
		//menu1 = about, menu2 = products, menu3 = industry solutions, menu4 = industry applications, menu5 = contact
var myMenu1 = new ypSlideOutMenu("menu1", "down", 130, 174, 350, 350)
//var myMenu1 = new ypSlideOutMenu("aboutus", "down", 100, 143, 190, 350) 
 
		myMenu1.onactivate = repositionMenu1 
		function repositionMenu1()
		{
			var newLeft = getWindowWidth() / 2 + myOffset1;
			myMenu1.container.style ? myMenu1.container.style.left = newLeft + "px" : myMenu1.container.left = newLeft;
		}

//======================
//======================	 
		function getWindowWidth()
		{
			return window.innerWidth ? window.innerWidth : document.body.offsetWidth;
		}