function scrollAccroche(){
	$("#accroche1").fadeOut("normal").fadeIn("slow");
	setTimeout("scrollAccroche()",3000);
}

$(document).ready(function(){
	setTimeout("scrollAccroche()",1000);
});