var VarPub=1;

var delai=6000;

var cpt=Math.round(Math.random()*2);

function changeimages()
{	
	imgs = new Array(3);
	
	imgs[0]=["pub/pub1.png", "http://www.extelia.fr/pub/redirection/url.php?VarUrl=1"];
	imgs[1]=["pub/pub2.png", "http://www.extelia.fr/pub/redirection/url.php?VarUrl=2"];
	imgs[2]=["pub/pub3.png", "http://www.extelia.fr/pub/redirection/url.php?VarUrl=3"];
	
	document.getElementById("ima").src=imgs[cpt][0];
	document.getElementById("linkTo").href = imgs[cpt][1];
	
	cpt++;
	
	if(cpt>=imgs.length){ 
		cpt=0;
		}
	setTimeout("changeimages()", delai);   
}


function createimage ()
{
	if (VarPub==1) {
		document.write ('<a href="" id="linkTo"><img src="pub/pub0.gif" alt="Evenement" width="468" height="60" border="0" id="ima" name="ima" /></a>');
		changeimages();
	}
}
