/* =====================================================================
*
*    utility.js
*
* =================================================================== */
jQuery.extend(jQuery.easing,{easeInQuart:function(e,a,b,c,d){return c*(a/=d)*a*a*a+b},easeOutQuint:function(e,a,b,c,d){return c*((a=a/d-1)*a*a*a*a+1)+b},easeInOutQuint:function(e,a,b,c,d){if((a/=d/2)<1)return c/2*a*a*a*a*a+b;return c/2*((a-=2)*a*a*a*a+2)+b}});var Util=function(){(function(){$(document).ready(function(){$('a[href^="#"]').click(function(){var e=$($(this).attr("href")).position().top;$("html,body").animate({scrollTop:e},1E3,"easeInOutQuint");return false})})})();return{}}(); $(document).ready(function(){$(".effect1").hover(function(){$(this).stop(true,false).fadeTo(200,0.7)},function(){$(this).stop(true,false).fadeTo(300,1)})});




