function diaporama(){
	setTimeout('diaporama();', 5000);
	var a_cacher = $("#bandeau p:visible");
	if(a_cacher.next('p').size()>0){
		a_afficher = a_cacher.next('p');
	}else{
		a_afficher = $("#bandeau p:first");
	}
	a_cacher.fadeOut("slow");
	a_afficher.fadeIn("slow");
}

$(document).ready(function () {
	/*
	$('#pass').focus(function(){
		if($('#pass').val() == 'password'){
			$('#pass').val('');
		}
	});
	*/
	
	
	
	if($("#bandeau p").size()>1){
		setTimeout('diaporama();', 5000);
	}
});
function IsThisBrowserIE6() {
    return ((window.XMLHttpRequest == undefined) && (ActiveXObject != undefined))
}
function IsThisBrowserIE7(){
	return (document.all && !window.opera && window.XMLHttpRequest) ? true : false;
}
