// This file contains the constructors for the slide out/pull down menus that are 
// visible on all pages BUT the home page.  (The menus that are visible on the home
// page are handled in roll_home.js.)
// Modify these parameters to change the size of the menus, etc.  See the below
// parameter definitions for hints.

// The parameters match this function declaration:
//function ypSlideOutMenu(id, dir, left, top, width, height, parentid, degrade, debug)

var menus = [ 
	
		new ypSlideOutMenu("menu1", "down", 281, 44, 175, 85, null),
		new ypSlideOutMenu("menu2", "down", 369, 44, 175, 71),
		new ypSlideOutMenu("menu3", "down", 457, 44, 175, 132),
		new ypSlideOutMenu("menu4", "down", 545, 44, 175, 88),
		new ypSlideOutMenu("menu5", "down", 545, 44, 175, 54),
		new ypSlideOutMenu("menu10", "right", 455, 62, 168, 54, "menu1"),
		new ypSlideOutMenu("menu20", "right", 455, 77, 168, 54, "menu1"),
		new ypSlideOutMenu("menu30", "right", 455, 92, 178, 175, "menu1"),
		new ypSlideOutMenu("menu40", "right", 455, 107, 168, 25, "menu1"),
		new ypSlideOutMenu("menu110", "down", 471, 113, 168, 71, "menu10")
		
]
	document.write('<style type="text/css">' + ypSlideOutMenu.styleMod + '</style>');
	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='';");
	}
