	function nb_aleatoire(nb)
	{
		nombre= Math.floor(Math.random() * nb)+1;
	}

// permet de randomiser le choix de l'image / bloque pour l'instant sur choix nombre=2	
	nb_aleatoire(1)
	nombre++;
	if (screen.width<=640) image='images/fonds/640x480_'+nombre+'.jpg';
	else if (screen.width<=800) image='images/fonds/800x600_'+nombre+'.jpg';
	else if (screen.width<=1024) image='images/fonds/1024x768_'+nombre+'.jpg';   
	else if (screen.width<=1152) image='images/fonds/1152x864_'+nombre+'.jpg';   
	else if (screen.width<=1280) image='images/fonds/1280x1024_'+nombre+'.jpg';
	else image='images/fonds/1600x1200_'+nombre+'.jpg';   
	document.write('<body style="background-image:url('+image+');">');	
	//alert(image);
