var speed = 500;
var timer_value = null;
var timer_name = null;
var menu_id = null;
var pos = null;
var ii = "m8";

function show(_name,mm,t){
document.getElementById(mm).style.background = "url(img/"+mm+".gif) left -29px";
clearTimeout(timer_value);

document.getElementById(_name).style.visibility = "visible";
 if(timer_name == _name){
 }
 else {	 
 hide_menu();
 }
}

function hide(_name,mm){
timer_value = setTimeout("hide_menu()", speed);
timer_name = _name;
menu_id = mm;
}

function hide_menu(){
if(timer_name){
		//ii="m1";
//alert(ii);
		document.getElementById(timer_name).style.visibility = "hidden";
		document.getElementById(ii).style.background = "url(img/"+ii+".gif) left top";
		//document.getElementById(menu_id).style.background = "url(img/menu_a.gif) no-repeat  right top";	//неактив	
		//document.getElementById(menu_id).style.color = "#ffffff";//неактив	
		//document.getElementById(ii).style.background = "url(img/m_a.png) right top";
		//document.getElementById(ii).style.color = "#72838F";
		/*if(ii == 'm1'){
 			alert("df");
			}*/
 }
}



function fact(){	
	//document.getElementById(menu_id).style.background = "url(img/m_a.png) right top";
	//document.getElementById(menu_id).style.color = "#72838F";
}


function win_resize(){
	if(document.layers){
	document.location.reload();
	 }
}

window.onresize = win_resize;



