//<!--

function menu_parent_show_on(ID){
	timeout_id = window.setTimeout("menu_parent_show('"+ID+"')",1200);
}

function menu_parent_show_off(){
	clearTimeout(timeout_id);
}

function menu_parent_show(ID){
	var currStyle = getRealDisplay(ID); // Для получения стиля из CSS
	if(currStyle == 'none'){
		document.getElementById(ID).style.display='block';
	}
}
function menu_parent_hide(ID){
	if(document.getElementById(ID).style.display != 'none'){
		document.getElementById(ID).style.display='none';
	}
}

function getRealDisplay(ID) {
	var elem = document.getElementById(ID);	
    if (elem.currentStyle) {
		return elem.currentStyle.display
	} else if (window.getComputedStyle(elem,null)) {
		var computedStyle = window.getComputedStyle(elem, null)
		return computedStyle.getPropertyValue('display')
	} 
}

//-->
