function rotating_ads() {
  var idad = 0; // pub en cours d'affichage
  var idad_max = $("#fwk_bandeau_pub_top li").length-1; // nombre de pubs à faire boucler
  $.timer(10000, function (timer) {
    // toutes les 10 secondes, on incrémente idad et on le fait boucler si besoin
    if (++idad > idad_max) idad = 0;
    // on cache toutes les pubs puis on réaffiche celle en cours
    $("#fwk_bandeau_pub_top li").css("visibility","hidden");
    $("#fwk_bandeau_pub_top li:eq("+idad+")").css("visibility","visible");
    // on rafraichit l'attribut src pour refaire boucler le gif animé
    var idad_src = $("#fwk_bandeau_pub_top li:eq("+idad+") a img").attr("src");
    $("#fwk_bandeau_pub_top li:eq("+idad+") a img").attr("src",idad_src);
  });
}

$(document).ready(function(){
	rotating_ads();
});

