$(document).ready(function() {
tab = ["<br /><br />Un cours de démo OFFERT !<br /><a href=\"contact.php\">Cliquez ici !</a>", "<br /><br />Votre devis DIF sous 24  heures !<br /><a href=\"devis_formation.php\">Cliquez ici !</a>", "<br />Une formation à financer ?<br />Nos conseillers vous assisteront !<br /><a href=\"contact.php\">Cliquez ici !</a>"]
i = 0;
k = tab.length-1;
setInterval(function() {
$("#annonces").fadeOut(2000,function(){
$(this).html(tab[i]).fadeIn(5000);
});
if (i>=k) { i=0; } else {i++;}
},9000);
ville = ["Paris","Lyon","Lille","Londres","Nantes","Bordeaux","Toulouse","Marseille","Hambourg"];
iville = 0;
kville = ville.length-1;
setInterval(function() {
$("#slogan").css("background","url(medias/images/"+ville[iville]+".png) 0 0");
if (iville>=kville) { iville=0; } else {iville++;}
},3000);
$("#navig ul").hide();
$("#navig ul:has(a.active)").show();
$("#navig h2").click(function() {
$(this).next().toggle();
});
function changeLigne() {
$("#rapid li").removeClass("annonce");
$("#rapid li:nth-child("+iligne+")").toggleClass("annonce");
iligne = (iligne >= kligne) ? 1 : iligne + 1;
}
var kligne = $("#rapid li").length;
var iligne = 1;
ligneInterval = window.setInterval(changeLigne, 1000);
});
