// JavaScript Document
function click_actu(a){
		
	if(a == 1){
		
		$("div_display_actu_2").style.display = "none";
		$("div_display_actu_3").style.display = "none";
		$("div_display_actu_1").style.display = "";
		
		$("img_actu_2").style.display = "none";
		$("img_actu_2_bis").style.display = "";
		
		$("img_actu_3").style.display = "none";
		$("img_actu_3_bis").style.display = "";
		
		$("img_actu_1").style.display = "";
		$("img_actu_1_bis").style.display = "none";
		
	}else if(a == 2){
		
		$("div_display_actu_2").style.display = "";
		$("div_display_actu_3").style.display = "none";
		$("div_display_actu_1").style.display = "none";
		
		$("img_actu_2").style.display = "";
		$("img_actu_2_bis").style.display = "none";
		
		$("img_actu_3").style.display = "none";
		$("img_actu_3_bis").style.display = "";
		
		$("img_actu_1").style.display = "none";
		$("img_actu_1_bis").style.display = "";
		
	}else{
		
		$("div_display_actu_2").style.display = "none";
		$("div_display_actu_3").style.display = "";
		$("div_display_actu_1").style.display = "none";
		
		$("img_actu_2").style.display = "none";
		$("img_actu_2_bis").style.display = "";
		
		$("img_actu_3").style.display = "";
		$("img_actu_3_bis").style.display = "none";
		
		$("img_actu_1").style.display = "none";
		$("img_actu_1_bis").style.display = "";
		
	}
	
}
