jQuery.noConflict();
jQuery(function(){
		   
	jQuery(document).ready(function(){

		jQuery(".slider li").hover(function(){
			jQuery(this).find("a").stop().animate({top:"313"}, "fast")
			}, function (){
			jQuery(this).find("a").stop().animate({top:"406"}, "slow")
		});
	
	});

   
//Categories animate
	jQuery('.module-categories li a:not(.active)').hover(function(){var el=this;if(!el.blocked&&el.className.indexOf('active')){this.blocked=true;jQuery(this).stop(true,true).animate({'background-color':'#fff604'},'fast',function(){el.blocked=false}).find('a').stop(true,true).animate({color:'#000'},'fast')}},function(){var el=this;if(el.className.indexOf('active'))jQuery(this).stop(true,true).animate({'background-color':'#000'},'fast').find('a').stop(true,true).animate({color:'#fff'},'fast')})
	
//Product animate
	jQuery('.featuredIndent').hover(function(){var el=this;if(!el.blocked){this.blocked=true;jQuery(this).animate({'background-color':'#fff604'},'fast',function(){el.blocked=false})};return false;},function(){jQuery(this).animate({'background-color':'#fff'},'fast');return false;})

//Product animate
	jQuery('.product_sect').hover(function(){var el=this;if(!el.blocked){this.blocked=true;jQuery(this).animate({'background-color':'#fff604'},'fast',function(){el.blocked=false})};return false;},function(){jQuery(this).animate({'background-color':'#fff'},'fast');return false;})

})
