/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
$(document).ready(avis);

function avis()
{
    var time=0;
    $(".avis").each(function(){
        
        
        var montruc=this;

        window.setTimeout(function(){$(montruc).show();},time);
        time=time + 10000
        window.setTimeout(function(){$(montruc).hide();},time);

        
        
        

        //$(this).show('slow').delay(6000).hide('fast');
    }); 
    window.setTimeout(avis,time);
}

