var timeountID = new Object();
function menuID(id, div){ 
	document.getElementById(id).style.display = ""; 
	document.getElementById(id).style.color = "#FFFFFF"; 
	clearTimeout(timeountID[id]);
} 
function quitarID(id, div){ 
	timeountID[id] = setTimeout( 
		function () {
			document.getElementById(id).style.display = "none"; 
			document.getElementById(id).style.color = "#000"; 
			clearTimeout(timeountID[id]);
		}
	, 250);
}
function subMenuHighlight(div){
	div.className = 'over';
}
function subMenuOut(div){
	div.className = '';
}
function showId(id){
	if (document.getElementById(id))
	{
		document.getElementById(id).style.display = "";
	}
	clearTimeout(timeountID[id]);
}
function hideId(id){
	timeountID[id] = setTimeout( 
		function () {
			if (document.getElementById(id))
			{
				document.getElementById(id).style.display = "none";
			}
			clearTimeout(timeountID[id]);
		}
	, 250);

}
function showHide(id){
	if(document.getElementById(id).style.display == "none"){
		document.getElementById(id).style.display = "";
	}else{
		document.getElementById(id).style.display = "none";
	}
}