/*$(document).ready(function(){
	if($(".alert") != undefined)
		$(".alert").slideDown(3000).delay(10000).slideUp(3000);
	
	if($(".voirCarte") != undefined)
	{
		$(".voirCarte").click(function(){
			if($(this).html() == "(Voir la carte)")
			{
				$(this).html("(Cacher la carte)");
				$(this).parent().find(".map").show("slow");
			}
			else
			{
				$(this).html("(Voir la carte)");
				$(this).parent().find(".map").hide("slow");
			}
			return false;
		});
	}
	$(".map").each(function(){
		$(this).delay(1000).hide(2000);
	});
});*/

