$(document).ready(function()
{
	$("#nextBtn").click(function(){		
	//window.prompt("HEY");								 
	$("#increment").text(parseInt($("#increment").text()) + 1);//parseInt($("#increment").html) + 1;		
	
	});
	
	$("#prevBtn").click(function(){		
	//window.prompt("HEY");								 
	$("#increment").text(parseInt($("#increment").text()) - 1);//parseInt($("#increment").html) + 1;		
	
	});

	
	//Handle inserting the stock.
	
	//$(".thumbHolder").load("includes/autofill_stock.php","test,wollo");
	
	
	//#nextBtn
	//#prevBtn
});

