// JavaScript Document
$(document).ready(function() {
		var scrollImageWidth = $('#product-assoc-outer2').width();
		var ct = $('#product-assoc-outer2 > *').length; 
		var imageIncrease = 106;
		var i = 0;
		$('#product-assoc-outer2').width(ct * imageIncrease);
		scrollImageWidth = $('#product-assoc-outer2').width();
	
		

		$("div.product-associated-right-btn").click(function(){
			//Make if statement that if top is more less than 0 to animate, if equal or more than do not animate
			if ( (-scrollImageWidth + imageIncrease) < i) { 
				$("#product-assoc-outer2").animate({
					left : "-=" + imageIncrease + 'px'
				}, "medium");
				
			i = i - imageIncrease;
			} 
			
	   });
		$("div.product-associated-left-btn").click(function(){
			//Make if statement that if top is less than 0 to animate, if equal or more than do not animate
			if (0 > i) { 
				$("#product-assoc-outer2").animate({
					left : "+=" + imageIncrease + 'px'
				}, "medium");
				i = i + imageIncrease;
			} 
	   });	

});