<!--
function ehandler(event,theobj)
{
	// Make sure that our object has been defined.
	if (typeof theobj != 'undefined')
	{
		for (var i=1; i<= theobj.numberofmenuitems; i++)
		{
			var shutdiv =eval( "menuitem"+i+".thediv");
			shutdiv.style.visibility="hidden";
		} // end for each menu item
	
		if ((event.clientY >=40)&&(event.clientY <= 120))
		{
			theobj.thediv.style.visibility="visible";
		} // end if we should set the style to visible
	} // end if we have an object to work with
} // end ehandler()
// -->
