var timerID = null;
var timerOn = false;
var timecount = 0;

function HideAll() {
document.getElementById("Ly_Services").style.display = "none";
}

/** ====================================================================================== **/

function ShowServices() {
	document.getElementById("Ly_Services").src = "";
}

function HideServices() {
document.getElementById("Ly_Services").style.display = "none";
}

/** ====================================================================================== **/


/** ====================================================================================== **/

function startTimeServices() {
	if (timerOn == false) {
		timerID=setTimeout( "HideServices()" , timecount);
		timerOn = true;
	}
}


function ShowContent(d) {
document.getElementById(d).style.display = "";
}

function stopTime() {
	if (timerOn) {
		clearTimeout(timerID);
		timerID = null;
		timerOn = false;
	}
}

function changeTailleTexte(taille,nomIdDiv){
	
	document.getElementById(nomIdDiv).style.fontSize = taille+"pt";
	
}
// JavaScript Document
