//-- 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
var s = new Array();
var x=0;

s[x++] = "Fairtrade Colombian Filter Coffee^Fairtrade_Colombian_Filter_Coffee.htm^Catering bulk case of 100 filter coffee sachets each weighing 56g, includes 100 filter papers free of charge. Each sachet will brew one 3 pint jug (1.8litre) of fresh filter coffee. Made with Fairtrade Mark certified Colombian coffee beans roasted and filter ground.^fairtrade filter coffee sachets, fairtrade coffee, filter coffee sachets, suppliers, uk^78^0.00^17.5^Fairtrade_Colombian_Filter_Coffee.htm^500.00";
s[x++] = "Fairtrade Decaffeinated Filter Coffee^Fairtrade_Decaffeinated_Filter_Coffee.htm^Catering bulk case of 100 filter coffee sachets each weighing 56g, includes 100 filter papers free of charge. Each sachet will brew one 3 pint jug (1.8litre) of fresh filter coffee. Made with Fairtrade Mark certified Colombian decaffeinated coffee beans roasted and filter ground.^decaffeinated filter coffee, fairtrade filter coffee sachets, pour and serve coffee, suppliers, uk^78^0.00^17.5^Fairtrade_Decaffeinated_Filter_Coffee.htm^500.00";
s[x++] = "Swaledale Filter Coffee^Swaledale_Filter_Coffee.htm^Catering bulk case of 100 filter coffee sachets each weighing 56g, includes 100 filter papers free of charge. Each sachet will brew one 3 pint jug (1.8litre) of fresh filter coffee. Made with coffee a blend that includes Kenya and Costa Rica origin coffee beans roasted and filter ground.^swaledale filter coffee, filter coffee sachets, 3 pint sachets, pour and serve sachets, suppliers, uk^71.6^0.00^17.5^Swaledale_Filter_Coffee.htm^500.00";


//--- ----------------------------------------------
//--- 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);

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("Zone 1","0",0,"UK. Within the mainland of the UK",150,100,0,0,0,0,0,"peritem")
zoneWeight[1] = new Array();


shippingZones[x++] = new zone("Zone 2","0",0,"All countries in Europe",150,100,0,0,0,0,0,"peritem")
zoneWeight[2] = new Array();


shippingZones[x++] = new zone("Zone 3","0",0,"All states in United States of America",150,100,0,0,0,0,0,"peritem")
zoneWeight[3] = new Array();

