this.tooltip=function(){xOffset=10;yOffset=20;imgSrc="/images/tooltip.png";imgSrcSelected="/images/tooltip-selected.png";$("div.label label span.q").append("<span class='help'><a class='tooltip'><img src='"+imgSrc+"' alt='' title=''></a></span>");$("div.label label span.q.no-icon span").remove();$("div.label label span.q a").each(function(a){this.labelTooltipTitle=$(this).parents("label:eq(0)").attr("title");$(this).children("img").attr({title:this.labelTooltipTitle})});$("div.label label span.q").each(function(a){$(this).parents("label:eq(0)").attr({title:""})});$("div.label label span.q a").hover(function(a){$(this).children("img").attr({src:imgSrcSelected});this.imageTooltipAlt=$(this).children("img").attr("title");if(this.imageTooltipAlt!=""){$(this).children("img").attr({title:""});$("body").append("<div id='tooltip'>"+this.imageTooltipAlt+"</div>");$("#tooltip").css("top",(a.pageY-xOffset)+"px").css("left",(a.pageX+yOffset)+"px").fadeIn("fast")}},function(){$(this).children("img").attr({src:imgSrc});$(this).children("img").attr({title:this.imageTooltipAlt});$("#tooltip").remove()});$("a.tooltip").mousemove(function(a){$("#tooltip").css("top",(a.pageY-xOffset)+"px").css("left",(a.pageX+yOffset)+"px")})};this.setselectednavigation=function(){$(function(){var c=location.pathname.substring(1);var a=location.search;var b=c+a;if(b){$('.nav-bar a[href$="'+b+'"]').attr("class","selected")}})};$(document).ready(function(){setselectednavigation();tooltip()});
