jQuery.fn.codaBubble=function(p){var q=this;p=jQuery.extend({bubbleTime:400,hideDelay:0,bubbleWidth:350,bubbleImagesPath:"",msieFix:true,msiePop:true},p||{});function bubbleHtmlWrapper(a){return'<table class="popup" style="opacity: 0; top: -140px; left: -33px; display: none;"><tr><td class="corner topleft"/><td class="top"/><td class="corner topright"/></tr><tr><td class="left"/><td class="bubble_content">'+a+'</td><td class="right"/></tr><tr><td class="corner bottomleft"/><td class="bottom"><img style="display:block;" width="30" height="29" alt="" /></td><td class="corner bottomright"/></tr></table>'}return jQuery(q).each(function(i){if($(this).attr('class')=='explanation'){var d=unescape(expl_array[$(this).attr('id')])}else if($(this).attr('class')=='ajax_explanation'){var d=''}else{var d=jQuery('.bubble_html',this).html()}jQuery('.bubble_html',this).hide().after(bubbleHtmlWrapper(d));jQuery('.popup td.bottom img',this).attr('src',p.bubbleImagesPath+'/bubble-tail2.png');if(p.msieFix){if($.browser.msie){jQuery('.popup td.topleft').css('background-image','url('+p.bubbleImagesPath+'/bubble-1.gif)');jQuery('.popup td.top').css('background-image','url('+p.bubbleImagesPath+'/bubble-2.gif)');jQuery('.popup td.topright').css('background-image','url('+p.bubbleImagesPath+'/bubble-3.gif)');jQuery('.popup td.left').css('background-image','url('+p.bubbleImagesPath+'/bubble-4.gif)');jQuery('.popup td.right').css('background-image','url('+p.bubbleImagesPath+'/bubble-5.gif)');jQuery('.popup td.bottomleft').css('background-image','url('+p.bubbleImagesPath+'/bubble-6.gif)');jQuery('.popup td.bottom').css('background-image','url('+p.bubbleImagesPath+'/bubble-7.gif)');jQuery('.popup td.bottomright').css('background-image','url('+p.bubbleImagesPath+'/bubble-8.gif)');jQuery('.popup td.bottom img').attr('src',p.bubbleImagesPath+'/bubble-tail2.gif')}}var e=p.distance;var f=p.leftShift;var g=p.bubbleTime;var h=p.hideDelay;var j=p.bubbleWidth;var k=null;var l=false;var m=false;var n=jQuery('.trigger',this);var o=jQuery('.popup',this).css('opacity',0);jQuery([n.get(0),o.get(0)]).mouseover(function(){jQuery(o).css("width",j+"px");var a=jQuery(n.get(0)).css('width');if(k){clearTimeout(k)}if(l||m){return}else{l=true;var b=0;if($(this).parent().attr('class')=='ajax_explanation'){if($.trim($('.bubble_content',$(this).parent()).html())==''){$('.bubble_content',$(this).parent()).html($.ajax({url:"/common/get_explanation.php?id="+$(this).parent().attr('id'),async:false,timeout:1000}).responseText)}}var c=o.height();o.delay(100).css({top:-(c-40),left:(f?f:-145),display:'block'}).animate({top:'-='+(e?e:40)+'px',opacity:1},g,'swing',function(){l=false;m=true})}}).mouseout(function(){if(k){clearTimeout(k)}k=setTimeout(function(){k=null;o.animate({top:'-='+(e?e:40)+'px',opacity:0},g,'swing',function(){m=false;o.css('display','none')})},h)});if(!p.msiePop&&$.browser.msie){jQuery(o).remove()}})}
