
var timerID = null;
var timerOn = false;
var timecount = 280;

function HideAll() {
document.getElementById("Ly_Produits").style.display = "none";
document.getElementById("Ly_Contactez").style.display = "none";
}

function HideProduits() {
document.getElementById("Ly_Produits").style.display = "none";
}

function startTimeProduits() {
	if (timerOn == false) {
		timerID=setTimeout( "HideProduits()" , timecount);
		timerOn = true;
	}
}

function HideContactez() {
document.getElementById("Ly_Contactez").style.display = "none";
}

function startTimeContactez() {
	if (timerOn == false) {
		timerID=setTimeout( "HideContactez()" , timecount);
		timerOn = true;
	}
}

function ShowContent(d) {
document.getElementById(d).style.display = "";
}

function stopTime() {
	if (timerOn) {
		clearTimeout(timerID);
		timerID = null;
		timerOn = false;
	}
}
