/*
* hoverAnim (1.0) // 2008.02.10 // <http://plugins.jquery.com/project/hoverAnim>
* 
* REQUIRES jQuery 1.2.3+ <http://jquery.com/>, hoverIntent <http://cherne.net/brian/resources/jquery.hoverIntent.html>
* 
* Copyright (c) 2008 TrafficBroker <http://www.trafficbroker.co.uk>
* Licensed under GPL and MIT licenses
*
* @author    Jesus Carrera <jesus.carrera@trafficbroker.co.uk>
*/
(function(A){A.fn.hoverAnim=function(B,C){C=A.extend({},A.fn.hoverAnim.defaults,C);return this.each(function(){var F={};for(var E in B){F[E]=A(this).css(E)}var H=function(){A(this).stop();A(this).animate(B,C.speed,C.easing)};var D=function(){A(this).stop();A(this).animate(F,C.speed,C.easing)};var G={sensitivity:C.sensitivity,interval:C.interval,over:H,timeout:C.timeout,out:D};A(this).hoverIntent(G)})};A.fn.hoverAnim.defaults={speed:150,easing:"swing",sensitivity:3,interval:1,timeout:1}})(jQuery);