function changeplace(){
    /*$("#nuage").animate({left: "-=1000px", top: "-=200px"}, 100000);
    $("#nuage2").animate({left: "-=300px", top: "-=400px"}, 100000);*/
};

$(document).ready(function(){
  $("acronym").each(function(){
    $(this).after("<div class=\"definition\">" + $(this).attr("title") + "</div>").hover(function(){ $(this).next("div.definition").css({left: $(this)[0].offsetLeft + 20, top: $(this)[0].offsetTop + 20}).animate({height: "show", opacity: "show"}, "slow"); }, function(){ $(this).next("div.definition").animate({height: "hide", opacity: "hide"}, "slow"); });
    $(this).attr("title", "");
  });
  changeplace();
  setTimeout("traverser()",1000);
});
