$(document).ready(function() { 
 
tab = CONTTAB7 ; 
 
i = 0; 
k = tab.length-1; 
 
setInterval(function() { 
$("#annonces").fadeOut(1000,function(){ 
$(this).html(tab[i]).fadeIn(3000); 
}); 
if (i>=k) { i=0; } else {i++;} 
},7000); 
 
 
$("#diapo").cycle({ 
fx:    'fade', 
speed:  2000 
}); 
 
}); 

