  function FadeOut2()
           {                  
                  $('#LOGO_10').fadeOut(0);
}
  
  function FadeOut()
           {                  
                  $('#TOTALISSIMO').fadeOut(700);
}
  
  
   
function FadeIn()
           {                  
                  $('#LOGO_10').fadeIn(700);
}

$(document).ready(function(){

                FadeOut2(), FadeOut();
           });
   
 setInterval("FadeIn()", 800);
 

           

