

// JavaScript : preload des imases en rollover

<!--
var a
a= new Array();
a[0]=new Image;
a[0].src="fileadmin/templates/pompom/img/voter_on.gif";
a[1]=new Image;
a[1].src="fileadmin/templates/pompom/img/voter_off.gif";
a[2]=new Image;
a[2].src="fileadmin/templates/pompom/img/commander_on.gif";
a[3]=new Image;
a[3].src="fileadmin/templates/pompom/img/commander_off.gif";
a[4]=new Image;
a[4].src="fileadmin/templates/pompom/img/voirarticles_on.gif";
a[5]=new Image;
a[5].src="fileadmin/templates/pompom/img/voirarticles_off.gif";
a[6]=new Image;
a[6].src="fileadmin/templates/pompom/img/reserver_on.gif";
a[7]=new Image;
a[7].src="fileadmin/templates/pompom/img/reserver_off.gif";
a[8]=new Image;
a[8].src="fileadmin/templates/pompom/img/breves_on.gif";
a[9]=new Image;
a[9].src="fileadmin/templates/pompom/img/breves_off.gif";
a[10]=new Image;
a[10].src="fileadmin/templates/pompom/img/billetterie_on.gif";
a[11]=new Image;
a[11].src="fileadmin/templates/pompom/img/billetterie_off.gif";
a[12]=new Image;
a[12].src="fileadmin/templates/pompom/img/VoirVideo_on.gif";
a[13]=new Image;
a[13].src="fileadmin/templates/pompom/img/VoirVideo_off.gif";
a[14]=new Image;
a[14].src="fileadmin/templates/pompom/img/baspage_on.gif";
a[15]=new Image;
a[15].src="fileadmin/templates/pompom/img/baspage_off.gif";

function roll(img,nb,accueil) 
{
	
     eval("img.src=a["+nb+"].src");
	
}
//-->


