
var oMenus	= []
// prototype: ypSlideOutMenu(sIdPrefix, sDirection, iPosLeft, iPosTop, iDimWidth, iDimHeight)
oMenus[1]	= new ypSlideOutMenu("menu1", "down", 158, 99, 170, 200)
oMenus[2]	= new ypSlideOutMenu("menu2", "down", 296, 99, 150, 200)
oMenus[3]	= new ypSlideOutMenu("menu3", "down", 434, 99, 150, 133)

// 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 <= 3; i++) oMenus[i].load()
}




