// JavaScript Document
function cacher(){
	if(document.getElementById('erreur').style.display=="none"){
	return false;
	}else{
	$('#erreur').fadeOut('slow');
	}
}

function ajaxWaiting(){
	$("#contenu").html('<div class="loading"> </div>');
}

function doChargerPage(idLangue){
	$('#menu').hide();
	$('#footer').hide();
	$("#contenu").css({ width: "820px"});
	$("#blocG").css({ background: "#919aa2"});
	
	 var myAjax = $.ajax({
	   type: "GET",
	   url: "/php/do_afficher_page.php",
       data: "idLangue="+idLangue,
	   /*waiting: ajaxWaiting(),*/
	   success: function(html){
		$("#contenu").html(html);
	  }
	});
	return false;
}

function confirmer(texte){
	return confirm(texte);
}

function changeRealisation(img, id){
	var newImage = $(img).attr('rel');
	
	$('#bigPic'+id).fadeOut(100, function(){
		$(this).attr('src',newImage);
		 $(this).fadeIn(100);
	});
	return false;
}
