//SBE 1/24/04: Controls the size of the menu drop downs.

var oMenus	= []
// prototype: ypSlideOutMenu(sIdPrefix, sDirection, iPosLeft, iPosTop, iDimWidth, iDimHeight)
oMenus[1]	= new ypSlideOutMenu("menu1", "down", 158, 99, 160, 75)
oMenus[2]	= new ypSlideOutMenu("menu2", "down", 296, 99, 150, 220)
oMenus[3]	= new ypSlideOutMenu("menu3", "down", 434, 99, 150, 153)
oMenus[4]	= new ypSlideOutMenu("menu4", "down", 558, 99, 150, 85)

// this function can only be called after the page has loaded.
// right now i'm checking for it's existence in /inc/body.asp, and then calling it
function initDropDowns() {
	for (var i = 1; i <= 4; i++) oMenus[i].load()
}




