	function chgImage(){

		var diaporama = new Array();
		var img;
		var nb_img=2;
 		diaporama[0] = new Array('le_bon_coin.gif','http://www.leboncoin.fr');
		diaporama[1] = new Array('cadeaux_fetes_de_paques.gif','moteur.php?evenement=Paques&amp;goto=submit');	

//		diaporama[1] = new Array('pendant_absence.jpg','http://www.prospectuschezmoi.com/etiquette-stop-pub.php');	
//		diaporama[1] = new Array('fete_des_grand_meres_h.jpg','http://www.prospectuschezmoi.com/detail-prospectus.php');
//		diaporama[1] = new Array('soldes_h.jpg','http://www.dgccrf.bercy.gouv.fr/actualites/soldes/soldes_hiver10.htm');
//		diaporama[1] = new Array('st_valentin_h.gif','http://www.prospectuschezmoi.com/moteur.php?evenement=St%20Valentin&amp;goto=submit');
//		diaporama[1] = new Array('cadeaux_jouets_de_noel_2009.jpg','http://www.prospectuschezmoi.com/moteur.php?evenement=No%C3%ABl&goto=submit');
//		diaporama[2] = new Array('Authentica_qualite_prix.jpg','http://www.authentica.fr');
//		diaporama[0] = new Array('jysk_catalogue_prospectus.gif','http://jysk.fr/prospectus.html');
//		diaporama[2] = new Array('cadeaux_fetes_de_paques.gif','http://www.prospectuschezmoi.com/moteur.php?evenement=Paques&amp;goto=submit"');
//		diaporama[0] = new Array('soldes_hiver_2008.jpg','http://www.dgccrf.bercy.gouv.fr/actualites/soldes/soldeshiver07_08.htm');	
//		diaporama[0] = new Array('www.deboffe.fr.jpg','http://www.deboffe.fr');
//		diaporama[0] = new Array('soldes_ete_2008.png','http://www.minefi.gouv.fr/DGCCRF/actualites/soldes/soldes_ete08.htm');
//		diaporama[0] = new Array('mesachats-net.coop.prospectus.jpg','http://www.mesachats-net.coop');
	
		// On choisit quelle est l'image qui va etre changée
		i = Math.round(Math.random()*(nb_img-1));
		
		if (document.getElementById) {
			img = document.getElementById('v');
		} else if (document.images) {
			img = document.images['v'];
		}
		if (img) {
			if (img.filters) img.filters[0].apply();
			img.src = "images_fr/prospectus_catalogue_en_ligne/" + diaporama[i][0];
			document.getElementById('lien').href = diaporama[i][1];
			if(img.filters) document.getElementById('v').filters[0].play();
		}
		
		setTimeout('chgImage()',3200);
	}