$(function(){
	LeftScroll = 0;
	RightScroll = 0;
	$('.ShopLeft').click(function(){
		//scrollLeft();
	}).mousedown(function(){
		scrollLeft();
		LeftScroll = setInterval(scrollLeft,500);
	});
	$('.ShopRight').click(function(){
		//scrollRight();
	}).mousedown(function(){
		scrollRight();
		RightScroll = setInterval(scrollRight,500);
	});
	$('.ShopLeft, .ShopRight').mouseup(function(){
		stopScrolling();
	}).mouseleave(function(){
		stopScrolling();
	});
	
	function stopScrolling(){
		clearInterval(LeftScroll);
		clearInterval(RightScroll);
	}
	function scrollLeft(){
		//stopScrolling();
		var ItemWidth = $('.ShopByCategoryLinkContainer td').outerWidth() + 2;
		$('.ShopByCategoryLinkContainer').animate({scrollLeft: '-=' + ItemWidth},500);
	}
	function scrollRight(){
		//stopScrolling();
		var ItemWidth = $('.ShopByCategoryLinkContainer td').outerWidth() + 2;
		$('.ShopByCategoryLinkContainer').animate({scrollLeft: '+=' + ItemWidth},500);
	}
	$('#chatLink, #chatImage').click(function(){
		$('img[name="psJhrBimage"]').click();
	});
});
