var obj = null;
var time = 0;

function FIND(item){
	if( window.mmIsOpera ) return(document.getElementById(item));
	if (document.all) return(document.all[item]);
	if (document.getElementById) return(document.getElementById(item));
	return(false);
}


function show_menu(){
	clearTimeout(time);
	obj = FIND("subMenuTop");
	if ( obj != null ){
		obj.style.display = "block";
		obj.style.visibility = "visible";
	}
}



/* Когда mouseOut меню */
function hide(){
	obj = FIND("subMenuTop");
	if ( obj != null ){
			obj.style.display = "none";
			obj.style.visibility = "hidden";
	}

}


/* для Netscape */
if ( window.navigator.appName == "Netscape" ){
window.captureEvents(Event.MOUSEOUT);
window.onmouseout = handle;
}

function handle(e){
	var obj = FIND("MenuTab");
	obj.handleEvent(e);
}