// JavaScript Document to overwrite init.js so the dropdowns are relative (fluid)


		var myOffset7 = 0;


		// the number you pass to initLeft doesn't matter since it will get
		// changed onactivate

		//This sets the size and position of each drop-down - left, top, width, height.

		var myMenu7 = new ypSlideOutMenu("menu7", "down", 400, 600, 600, 100)

 		myMenu7.onactivate = repositionMenu
		
		function repositionMenu()
		{

			// var newLeft = getWindowWidth() / 2 + myOffset7;
			
			var newLeft = 678 + myOffset7;

			myMenu7.container.style ? myMenu7.container.style.left = newLeft + "px" : myMenu7.container.left = newLeft;
		}
		 
		function getWindowWidth()
		{
			return window.innerWidth ? window.innerWidth : document.body.offsetWidth;
		}	