// JavaScript Document
$(window).load(function(){//on attend que la page soit chargée
	presentateur();			
});

function presentateur(){
	///////////////   SUR LE CLIC GAUCHE ///////////////////
	$("#article .gauche .info_presentateur a").click(function(){
		if($("#article .gauche .info_presentateur p").css("display")=="none")
			{
			$("#article .gauche .info_presentateur img").hide();
			$("#article .gauche .info_presentateur p").fadeIn();
			setTimeout("retour_img()",15000);
			}
		else{
			$("#article .gauche .info_presentateur p").hide();
			$("#article .gauche .info_presentateur img").fadeIn();
			}
		});
}

function retour_img(){
	$("#article .gauche .info_presentateur p").hide();
	$("#article .gauche .info_presentateur img").fadeIn();
}
