//-- 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++] = "1 pence^1_pence.htm^^^0.01^0.00^0.00^1_pence.htm^0.00^PRZA156";
s[x++] = "1 pound^1_pound.htm^^^1^0.00^0.00^1_pound.htm^0.00^PRZA157";
s[x++] = "gloss 750 ml^gloss_750_ml.htm^^^14.99^0.00^0.00^gloss_750_ml.htm^0.00^158";
s[x++] = "gloss 2.5 L^gloss_2.5_L.htm^^^44.99^0.00^0.00^gloss_2.5_L.htm^0.00^159";
s[x++] = "undercoat 750 ml^undercoat_750_ml.htm^^^11.3^0.00^0.00^undercoat_750_ml.htm^0.00^PRZA160";
s[x++] = "For Gloss single pack^For_Gloss_single_pack.htm^^^5.29^0.00^0.00^For_Gloss_single_pack.htm^0.00^PRZA162";
s[x++] = "For Antifouling^For_Antifouling.htm^^^5.29^0.00^0.00^For_Antifouling.htm^0.00^PRZA163";
s[x++] = "2 pack gloss 750 ml^2_pack_gloss_750_ml.htm^^^26.2^0.00^0.00^2_pack_gloss_750_ml.htm^0.00^PRZA164";
s[x++] = "2 pack gloss 2.5 L^2_pack_gloss_2.5_L.htm^^^74.99^0.00^0.00^2_pack_gloss_2.5_L.htm^0.00^165";
s[x++] = "Adherglass 750 ml^Adherglass_750_ml.htm^^^17.5^0.00^0^Adherglass_750_ml.htm^0.00^PRZA166";
s[x++] = "Epoxy Primer 750 ml^Epoxy_Primer_750_ml.htm^^^18.2^0.00^0.00^Epoxy_Primer_750_ml.htm^0.00^PRZA167";
s[x++] = "Raffaello 3 antifouling 2.5 L^Raffaello_3_antifouling_2.5_L.htm^^^72.5^0.00^0.00^Raffaello_3_antifouling_2.5_L.htm^0.00^PRZA168";
s[x++] = "Raffaello 3 (White) 2.5 L^Raffaello_3_(White)_2.5_L.htm^^^93^0.00^0.00^Raffaello_3_(White)_2.5_L.htm^0.00^PRZA169";
s[x++] = "Raffaello 750 ml^Raffaello_750_ml.htm^^^24.95^0.00^0.00^Raffaello_750_ml.htm^0.00^PRZA170";
s[x++] = "Raffaello (White) 750 ml^Raffaello_(White)_750_ml.htm^^^32.5^0.00^0.00^Raffaello_(White)_750_ml.htm^0.00^PRZA171";
s[x++] = "Easy-Pump Maxi Only^Easy-Pump_Maxi_Only.htm^^^15^0.00^0.00^Easy-Pump_Maxi_Only.htm^0.00^PRZA172";
s[x++] = "Easy-Pump Maxi with hose and outlet^Easy-Pump_Maxi_with_hose_and_outlet.htm^^^22.45^0.00^0.00^Easy-Pump_Maxi_with_hose_and_outlet.htm^0.00^PRZA175";
s[x++] = "Easy-Pump Maxi with outlet^Easy-Pump_Maxi_with_outlet.htm^^^17.5^0.00^0.00^Easy-Pump_Maxi_with_outlet.htm^0.00^PRZA174";
s[x++] = "Easy-Pump Maxi with Hose^Easy-Pump_Maxi_with_Hose.htm^Easy-Pump Maxi with Hose^^19.95^0.00^0.00^Easy-Pump_Maxi_with_Hose.htm^0.00^PRZA173";
s[x++] = "Easy-Pump MINI^Easy-Pump_MINI.htm^^^4.95^0.00^0.00^Easy-Pump_MINI.htm^0.00^PRZA176";
s[x++] = "180 amp Charging relays^180_amp_Charging_relays.htm^^^15^0.00^0.00^180_amp_Charging_relays.htm^0.00^PRZA178";


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

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",0);
taxItems[x++] = new taxrate("TAX",0);

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("Within UK Mainland","0",1,"UK. Within the mainland of the UK",9999,36,0,4.5,0,0,25,"perpercent")
zoneWeight[1] = new Array();


shippingZones[x++] = new zone("Outside UK or EU","0",0,"Not UK or EU",9999,75,0,25,0,0,40,"perpercent")
zoneWeight[2] = new Array();


shippingZones[x++] = new zone("To EU","0",0,"All countries in European Union",9999,50.25,0,10,0,0,35,"perpercent")
zoneWeight[3] = new Array();


shippingZones[x++] = new zone("NO SHIPPING","0",0,"To United Kingdom",150,0,0,0,0,0,0,"peritem")
zoneWeight[4] = new Array();
