/*
Copyright (C) 2011 BlueGolf, LLC. All Rights Reserved
*/
function Tooltip(b){var c=document.getElementById(b.name+"tooltip");
if(c){c.style.display="none";c.style.position="absolute";c.style.zIndex=30;if(!(/(^|\s)tooltiplink([0-9]*)($|\s)/).test(b.className)){b.onclick=Util.returnFalse;
}b.onmouseout=function(){c.style.display="none";};b.onmouseover=function(){Util.position(c,b,0,b.offsetHeight+1);
c.style.display="";};}}function Balloon(a){a.onmouseover=function(c){var b=document.getElementById(this.id+"content");
if(!b){return true;}if(window.fetchBalloonContent&&!b.firstTime){fetchBalloonContent(a,b);
b.firstTime="x";}this.className="balloonVisible";b.style.width="";b.style.top=this.offsetHeight+"px";
return true;};a.onmouseout=function(b){if(this.className!="balloonVisible"){return true;
}this.className="balloon";return true;};}Tooltip.tooltips=[];Balloon.balloons=[];
Util.chainHandler("onload",function(){var c=document.getElementsByTagName("a");for(var e=0;
e<c.length;e++){var b=c.item(e);if((/(^|\s)hastooltip([0-9]*)($|\s)/).test(b.className)){Tooltip.tooltips[Tooltip.tooltips.length]=new Tooltip(b);
}}var d=document.getElementsByTagName("span");for(var e=0;e<d.length;e++){var f=d.item(e);
if(/(^|\s)balloon($|\s)/.test(f.className)&&f.id){Balloon.balloons[Balloon.balloons.length]=new Balloon(f);
}}});
