$(function(){
	$("div.offers").scrollable({
		size:1,
		clickable: false
	});	  
	$("div.offers2").scrollable({
		size:1,
		clickable: false
	});
	$("div.offers3").scrollable({
		size:1,
		clickable: false
	});
	
	$(".special_offers a.nextPage").click(function(){
		if(currentspoffer < totalspoffers){
		 currentspoffer = currentspoffer+1; 
		}
		$(".special_offers .counter #sppge").text(""+currentspoffer+"");
	});
	
	$(".special_offers a.prevPage").click(function(){
		if(currentspoffer > 1){
		 currentspoffer = currentspoffer-1; 
		}
		$(".special_offers .counter #sppge").text(""+currentspoffer+"");
	});
	
	$(".best_selling a.nextPage").click(function(){
		if(currentoffer < totaloffers){
		 currentoffer = currentoffer+1; 
		}
		$(".best_selling .counter #pge").text(""+currentoffer+"");
	});
	
	$(".best_selling a.prevPage").click(function(){
		if(currentoffer > 1){
		 currentoffer = currentoffer-1; 
		}
		$(".best_selling .counter #pge").text(""+currentoffer+"");
	});
	
	
	$(".stock_items a.nextPage").click(function(){
		if(currentstockitem < totalstockitems){
		 currentstockitem = currentstockitem+1; 
		}
		$(".stock_items .counter #stckpge").text(""+currentstockitem+"");
	});
	
	$(".stock_items a.prevPage").click(function(){
		if(currentstockitem > 1){
		 currentstockitem = currentstockitem-1; 
		}
		$(".stock_items .counter #stckpge").text(""+currentstockitem+"");
	});
	  

});
