
AfficherInfoBulle=function(e)
{var text=this.myInfoBulle;if(text.attr('class')!='info-bulle-contenu')
return false;text.fadeIn().css('top',e.pageY).css('left',e.pageX+10);return false;}
CacherInfoBulle=function(e)
{var text=this.myInfoBulle;if(text.attr('class')!='info-bulle-contenu')
return false;text.fadeOut();}
InstallationInfoBulle=function()
{$('.info-bulle-css').each(function(){var hint=$(this).attr('hint');if(hint!="")
{var divInfoBulle=$('<div/>').attr('class','info-bulle-contenu').html(hint);$("body").append(divInfoBulle);$(this).attr('hint','').attr('src','/images/totem/aide_totem.jpg').hover(AfficherInfoBulle,CacherInfoBulle)
[0].myInfoBulle=divInfoBulle;}})}
$(document).ready(function(){InstallationInfoBulle();});
