// menu de sélection de catégories de partenaires

var TimerPartners = null;

function showMenuPartners(){
	document.getElementById('menu_partners').style.display = "block";
}

function hideMenuPartners(){
	document.getElementById('menu_partners').style.display = "none";
}

function timerMenuPartners(){
	TimerPartners = setTimeout("hideMenuPartners()",1000);
}

function resetTimerMenuPartners(){
	if(TimerPartners) clearTimeout(TimerPartners);
}