//
// Copyright Dave Barnwell dave@freshsauce.co.uk
// Feel Free to reuse this code for non-commercial projects
// Commercial resale use of this code is prohibited (we've all got to make a buck)
//

stockTeaser = { n:6, p:0, c:6, ajax:1 };
new Ajax.PeriodicalUpdater('stockteaser', '/_ajax_shop_front.php', {
  method: 'get', frequency: 5, decay: 1,
  parameters: stockTeaser,
  onSuccess: updateVars
});
function updateVars(oResp, oJSON) {
	// save current display info and increment page count
	stockTeaser.n = oJSON.n;
	stockTeaser.p = oJSON.p;
	stockTeaser.c = oJSON.c;
}