
$jq(document).ready(function() {
	
	$jq(".latest-products .slider").each(function() {
		var count = $jq(this).find(".product-list ul li").length;
		$jq(this).attr("itemcount",count);
	});

	$jq(".latest-products .next").click(function() {
		
		var press = $jq(this).parent().find(".slider").attr("press");
		var count = $jq(this).parent().find(".slider").attr("itemcount");
		
		if(press < count-4) {
		
			$jq(this).parent().find("ul").animate({
				"margin-left":"-=143"
			},"easeOutExpo");
			
			press++;
			
			$jq(this).parent().find(".slider").attr("press",press);
		
		}
		
	});
	
	$jq(".latest-products .prev").click(function() {
												 
		var press = $jq(this).parent().find(".slider").attr("press");
		var count = $jq(this).parent().find(".slider").attr("itemcount");
		
		if(press >= 1) {
		
			$jq(this).parent().find("ul").animate({
				"margin-left":"+=143"
			},"easeOutExpo");
			
			var press = $jq(this).parent().find(".slider").attr("press");
			
			press--;
			$jq(this).parent().find(".slider").attr("press",press);
		
		}
		
	});
						   
});
