function attachTooltip(a){$("#"+a+" a[title]").mouseover(function(d){var c=$(this).attr("title");$(this).attr("title","");var f=$(this).offset();var g=d.pageY-f.top;var b=f.left+$(this).width()+10;$("body").append('<div id="leftNavTooltip">'+c+"</div>");$("#leftNavTooltip").css({top:(d.pageY-g)+"px",left:b+"px"}).fadeIn("fast");$('#leftNavTooltip').bgiframe();}).mouseout(function(){if($("#leftNavTooltip").html()!=null){$(this).attr("title",$("#leftNavTooltip").html())}$("#leftNavTooltip").remove()})}$(document).ready(function(){attachTooltip("leftNavMenu")});
