var timerID = null;
var timerOn = false;
var timecount = 0;

function HideAll() {
document.getElementById("Ly_About").style.display = "none";
document.getElementById("Ly_Service").style.display = "none";
}

/** **/

function ShowAbout() {
document.getElementById("About").src = "../templates/accueil/images/about-us-over.gif";
}

function ShowService() {
document.getElementById("Service").src = "../templates/accueil/images/service-over.gif";
}


function HideAbout() {
document.getElementById("Ly_About").style.display = "none";
}

function HideService() {
document.getElementById("Ly_Service").style.display = "none";
}


function startTimeAbout() {
	if (timerOn == false) {
		timerID=setTimeout( "HideAbout()" , timecount);
		timerOn = true;
	}
	document.getElementById("About").src = "../templates/accueil/images/about-us.gif";

}

function startTimeService() {
	if (timerOn == false) {
		timerID=setTimeout( "HideService()" , timecount);
		timerOn = true;
	}
	document.getElementById("Service").src = "../templates/accueil/images/service.gif";

}

function ShowContent(d) {
document.getElementById(d).style.display = "";
}

function ShowContent(d) {
document.getElementById(d).style.display = "";
}

function stopTime() {
	if (timerOn) {
		clearTimeout(timerID);
		timerID = null;
		timerOn = false;
	}
}