	<!-- Hide
var domMenu = null;
var t = 0;
var lDelay = 75;
var lCount = 0;
var pause = 100;

function popMenu(){

			var domMenu = findDOM('menu1',1);
	if(isLayers){
	
			domMenu.left = 598
			domMenu.top = 0
			}
			
			domMenu.visibility = 'visible';
			domMenu.zIndex = '100';

}

function delayHide() {
var domMenu = findDOM('menu1',1);
///// Checks to see if there is a menu showing and whether 
///// the global variable 't' has been set to 0
    if (t == 0) {

///// Hides the old menu, resets menu conditions, 
///// and stops the function running
        domMenu.visibility = 'hidden'; 
        domMenu.zIndex = '0';
        domMenu = null;
        lCount = 0; 
        return false;
    }


///// Repeats the function adding 1 to lCount each time until 
///// lCount is equal to lDelay and then sets 't' to 0 so that 
///// the menu will hide when it runs again
    if (t == 1) { 
        lCount = lCount + 1;
        if (lDelay <= lCount) { t = 0; }
        if (lDelay >= lCount) { setTimeout('delayHide(' + t + ')',pause); }
    }
}
	// End hiding -->