
	var cpgeroot = "images/home/CPGE/bac/";
	var taxeroot = "outil/sepanouir/pix/";
	var file_type = ".png";
	var pix_1 = "pix1";
	var pix_2 = "pix2";
	var cpgepix = new Array();
	// initialisation des images pour cpgepix
	cpgepix[0] = cpgeroot+pix_1+file_type;
	cpgepix[1] = cpgeroot+pix_2+file_type;
	var taxepix = new Array();
	// initialisation des images pour taxepix
	taxepix[0] = taxeroot+pix_1+file_type;
	taxepix[1] = taxeroot+pix_2+file_type;
	// On enregistre l'état dans lequel on est
	var state = 0;
	
	
	function play() {

	
		// On execute le code pour les "Bacheliers rejoignez-nous"
		s = document.getElementById("cpge-effect");
		s.src = cpgepix[state];

		// On execute le code pour "Taxe d'apprentissage c'est maintenant"
		s = document.getElementById("taxe-effect");
		s.src = taxepix[state];		

		state = (state==0)? 1 : 0;
		setTimeout('play()', 1500);

	}



