//-- The symbol to use for the javascript trolley and checkout
MonetarySymbol	= "&pound;"
//-- List of Products; used in the SEARCH and the checkout/basket
//-- Array key
//-- name^id.htm^summary^keyword^price^shipping^tax^shipping^weight^id^defaulttaxrate
var s = new Array();
var x=0;

s[x++] = "Sorba-Freeze Refrigerant Pad Rolls^Sorba-Freeze_Refrigerant_Pad_Rolls.htm^60m length rolls (2 rolls, 4800 cells per roll, 9600 cells per box)^^155^0.00^17.5^Sorba-Freeze_Refrigerant_Pad_Rolls.htm^0.00^PRAA101";
s[x++] = "Sorba-Freeze Refrigerant Pad Sheets 4x3^Sorba-Freeze_Refrigerant_Pad_Sheets_4x3.htm^4 x 3 cells (800 sheets, 9600 cells per box)^^155^0.00^17.5^Sorba-Freeze_Refrigerant_Pad_Sheets_4x3.htm^0.00^PRAA102";
s[x++] = "Sorba-Freeze Refrigerant Pad Sheets 4x2^Sorba-Freeze_Refrigerant_Pad_Sheets_4x2.htm^4 x 2 cells (1200 sheets, 9600 cells per box)^^155^0.00^17.5^Sorba-Freeze_Refrigerant_Pad_Sheets_4x2.htm^0.00^PRAA103";
s[x++] = "Sorba-Freeze Refrigerant Pad Retail Packs^Sorba-Freeze_Refrigerant_Pad_Retail_Packs.htm^4 x 2 cells (30 sheets, 260mm x 185mm, 10&frac14;'' x 7&frac14;'')^^8.5^0.00^17.5^Sorba-Freeze_Refrigerant_Pad_Retail_Packs.htm^0.00^PRAA100";


//--- ----------------------------------------------
//--- Define the Shipping Zones
var shippingZones   = new Array();
var zoneWeight      = new Array();   // weight^price
var taxItems      = new Array();   // taxcode^percent
var shippingPolicy  = "peritem";

function zone(title,taxrate,taxexempt,description,maxthres,maxprice,minthres,minprice,peritem,perbasket,perpercent,perpolicy){
	this.title        = title;
	this.taxrate      = taxrate;
	this.taxexempt    = taxexempt;
	this.description	= description;
	this.maxthres     = maxthres;
	this.maxprice     = maxprice;
	this.minthres     = minthres;
	this.minprice     = minprice;
	this.peritem      = peritem;
	this.perbasket    = perbasket;
	this.perpercent   = perpercent;
	this.policy   = perpolicy;
}

function taxrate(_key, _value){
	this.key        = _key;
	this.value        = _value;
}

x=0;
taxItems[x++] = new taxrate("VAT",17.5);
taxItems[x++] = new taxrate("TAX",10);
taxItems[x++] = new taxrate("inc vat",0);
taxItems[x++] = new taxrate("vat 15",15);

x=0;



shippingZones[x++] = new zone("Please Select","0",0," ",0,0,0,0,0,0,0,"none")
zoneWeight[0] = new Array();


shippingZones[x++] = new zone("UK Shipping FREE","0",0,"UK. Within the mainland of the UK",150,100,0,0,0,0,0,"peritem")
zoneWeight[1] = new Array();
