jQuery(function ($) {

/* Multiple Product Pages - Image Hover */
	$('.contentWrap').hover(function(){
		var $goleft = $(this).find('.hover_link');
		$goleft.stop().animate({left:-$goleft.outerWidth()},{queue:false,duration:500});
	}, function(){
		var $goleft = $(this).find('.hover_link');
		$goleft.stop().animate({left:'0'},{queue:false,duration:500});
	});

	
/* Recent Prods slider */
	
	if ($(".prods_scrollable").length != 0) {		
		$('.prods_scrollable').scrollable({mousewheel: true});
	}
});	

		
