var debut = new Date;
debut = debut.getTime();

function load_time()
	{
	var fin = new Date;
	fin = fin.getTime();
	var secondes = (fin-debut)/1000;
	return secondes;
	}

function load_stat()
	{
	document.getElementById('stat_div').innerHTML='Page G&eacute;n&eacute;r&eacute;e en ' + load_time() + ' s.';
	}

function survol_in(imgact)
	{
	//imgact.style.cursor='hand';
	//imgact.style.backgroundImage = "url(Images/Menu/"+val+"_s.png)";
	imgact.style.backgroundPosition = "right";
	}
function survol_out(imgact)
	{
	//imgact.style.cursor='pointer';
	/*if (act == 1)
		{imgact.style.backgroundImage = "url(Images/Menu/"+val+"_c.png)";}
	else	{imgact.style.backgroundImage = "url(Images/Menu/"+val+".png)";}*/
	imgact.style.backgroundPosition = "left";
	}
