UNR_hide_delay = 200;

	var UNR_over_submenu = new Array();  
	var id1 = 1; 
	var TimerId = 0;

function UNR_activate(id) {   
	UNR_over_submenu[id] = true;   
	UNR_deactivateAll();   
	UNR_showSubMenu(id); 
};

function UNR_deactivate(id) {   
	UNR_over_submenu[id] = false;   
	UNR_deactivateAllDelay(); 
};

function UNR_deactivateAllDelay() {   
	TimerId=setTimeout("UNR_deactivateAll()",UNR_hide_delay); 
};

function UNR_deactivateAll() {   
	var id = 1;   
	while(document.getElementById("p"+id)) {     
		if(!UNR_over_submenu[id]) {       
			UNR_hideSubMenu(id);       
		}     
		id++;   
	} 
};

function UNR_showSubMenu(id) {   
	var theMenu = document.getElementById("p"+id);   
	theMenu.className = 'tmenu';
	var theImgMenu = document.getElementById("tm"+id);   
	theImgMenu.className = 'tmenu'+id+'o'; 
	var theSubMenu = document.getElementById("m"+id);   
	theSubMenu.className = 'menu2'; 
};

function UNR_hideSubMenu(id) {   
	var theMenu = document.getElementById("p"+id);   
	theMenu.className = ''; 
	var theImgMenu = document.getElementById("tm"+id);   
	theImgMenu.className = 'tmenu'+id; 
	var theSubMenu = document.getElementById("m"+id);   
	theSubMenu.className='menu1'; 
} 

function UNR_clearTimeout() {   
	clearTimeout(TimerId);
};
