$(document).ready(function(){

    cpt = 0;
    maxReal = 2;

	$("div.realisation").hide();								// On cache tous les div sous div.real-content
	$("div.realisation").eq(cpt).show();							// Rend visible le 1er div sous info-content

    runIt();

    function runIt() {
        $("div.realisation").eq(cpt).show("slow");                       // Rend visible le 1er div sous info-content
        $("div.realisation").eq(cpt).animate({ width:"100%" },12000);     // On attend 12sec
        $("div.realisation").eq(cpt).slideUp("slow", runIt);            // On cache le div et on appelle la fonction runIt
        cpt=(cpt+1)%maxReal;
    }


});