//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", 148, 89, 160, 75)
oMenus[2]	= new ypSlideOutMenu("menu2", "down", 281, 89, 150, 220)
oMenus[3]	= new ypSlideOutMenu("menu3", "down", 419, 89, 150, 153)
oMenus[4]	= new ypSlideOutMenu("menu4", "down", 552, 89, 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()
}




