// Images aléatoires
// Ce script vous permet de creer un affichage d'images en alternance.
var nbimage= 30;
var width;
var height;
var url;
var alte;
function banniere()
{
numimage= Math.round(Math.random()*(nbimage-1)+1);
if (numimage <= 10)
{
gotosite = "";
width = 750;
height = 498;
url = "template/images/img-aleatoire/accueil-1.jpg";
alte = "bambous cloture tige canne";
}
if (numimage > 10 && numimage <= 20)
{
gotosite = "";
width = 750;
height = 498;
url = "template/images/img-aleatoire/accueil-2.jpg";
alte = "bambous cloture tige canne";
}
if (numimage > 20)
{
gotosite = "";
width = 750;
height = 498;
url = "template/images/img-aleatoire/accueil-3.jpg";
alte = "bambous cloture tige canne";
}
if(gotosite != "")
	{
	document.write ('<A HREF="' + gotosite + '">');	
	}
document.write('<IMG SRC="' + url + '" WIDTH=' + width + ' HEIGHT=' + height + ' ALT="' + alte + '" BORDER=0>')
if(gotosite != "")
	{
	document.write('</A>')
	}
}
