function socialTooltip(listID){$("#"+listID+" a[title]").mouseover(function(e){var tooltip=$(this).attr("title");$(this).attr("title","");var offset=$(this).offset();var y=offset.top-15;var x=offset.left;$("body").append('<div id="socialTooltip" style="display:block">'+tooltip+"</div>");var h=$("#socialTooltip").height();var ypos=y-h;var w=$("#socialTooltip").width();var d=x-w/2;var leftPos=Math.round(d)+5;var c=x+w;$("#socialTooltip").css({top:ypos+"px",left:leftPos+"px"}).fadeIn("1000")}).mouseout(function(){if($("#socialTooltip").html()!=null){$(this).attr("title",$("#socialTooltip").html())}$("#socialTooltip").remove()})}$(document).ready(function(){socialTooltip("bnsf_social-media")});
