	var nowShowing = 1;

	function movePage(amnt){
	

	
		var elmID = "#products-row-" + nowShowing + "-inner";
		var newElmID = "#products-row-" + (nowShowing + amnt) + "-inner";

		if ($(elmID).length >0  && $(newElmID).length > 0){
			$(elmID).hide();
			$(newElmID).show();
			nowShowing = nowShowing + amnt;
			
			nextRight = "#products-row-" + (nowShowing + 1) + "-inner";
			nextLeft = "#products-row-" + (nowShowing - 1) + "-inner";
			
			if ( $(nextRight).length > 0){
				$("#rightArrow").attr("src", "/images/buttons/right_e.gif");
				$("#rightArrow").css({'cursor' : 'pointer'});					
			}else{
				$("#rightArrow").attr("src", "/images/buttons/right.gif");				
				$("#rightArrow").css({'cursor' : 'auto'});			
			}

			if ( $(nextLeft).length > 0){
				$("#leftArrow").attr("src", "/images/buttons/left_e.gif");
				$("#leftArrow").css({'cursor' : 'pointer'});					
			}else{
				$("#leftArrow").attr("src", "/images/buttons/left.gif");
				$("#leftArrow").css({'cursor' : 'auto'});	

			}
				
			
			
		}
		

	
	}