
// gestion erreurs de formulaires
$(function() {
	view_list_error();
});

function view_list_error()
{
	if($("#listerror > ul > li:first").text() != "") // au moins un message d'erreur, on affiche
	{
		$("#listerror").fadeIn("slow");
	}
}

// gestion alertes globales
var timer1;
function alerteDiv(){
	timer1=setTimeout("alerteDivV()", 1000);
}

function alerteDivV(){
	clearTimeout(timer1);
	if($("#alerte").html() != "")
	{
		$("#alerte").animate({
			  "height": "toggle", "opacity": "toggle"
			}, 600);
	}
	if($("#alerte2").html() != "")
	{
		$("#alerte2").animate({
			  "height": "toggle", "opacity": "toggle"
			}, 600);
	}
}

function closeAlerteDiv()
{
	$("#alerte").animate({
	  "height": "toggle", "opacity": "toggle"
	}, 600);
}
function closeAlerteDiv2()
{
	$("#alerte2").animate({
	  "height": "toggle", "opacity": "toggle"
	}, 600);
}

window.onload= function(){ alerteDiv();}
