// create custom animation algorithm for jQuery called "bouncy"
$.easing.bouncy=function(a,b,c,d,e){var f=1.70158;return(b/=e/2)<1?d/2*b*b*(((f*=1.525)+1)*b-f)+c:d/2*((b-=2)*b*(((f*=1.525)+1)*b+f)+2)+c},$.tools.tooltip.addEffect("bouncy",function(a){this.getTip().animate({top:"+=15"},500,"bouncy",a).show()},function(a){this.getTip().animate({top:"-=15"},200,"bouncy",function(){$(this).hide(),a.call()})}),$(document).ready(function(){$(".logo").tooltip({effect:"bouncy",delay:100})})
