
if(jQuery){$(document).ready(function(){$(".infobulle").hover(function(e){$('<div id="div_infobulle" class="infobulle">'+$(this).attr('title')+'</div>').css({display:'none',position:"absolute",top:(e.pageY+10)+"px",left:(e.pageX+10)+"px"}).appendTo('body').fadeIn("slow");$(this).attr('title','');},function(){$(this).attr('title',$("#div_infobulle").text());$("#div_infobulle").remove();});});}