/*
$.mutes = function (){
  alert("cool");
 setTimeout($.test,3000);		
  };
$.test =function(){
  alert("cooyl");
$(".diaporama").diaporama();
  };
*/

$.mutes = function (){
  //alert("cool");
  $("p#bo").fadeOut(1000);
setTimeout($.test,1000);		
  };
  
$.test =function(){
  //alert("cooyl");
 $(".diaporama").diaporama();
 };

$(document).ready(function(){

setTimeout($.mutes,2000);		
 
})

