//-- 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++] = "Standard House^Standard_House.htm^100mm long to fit 15mm pipework^^30^4.00^0^Standard_House.htm^0.00^PRAA100";
s[x++] = "Standard House 22mm Mains Inlet^Standard_House_22mm_Mains_Inlet.htm^100mm long to fit 22mm pipework^^34^4.00^0^Standard_House_22mm_Mains_Inlet.htm^0.00^PRAA101";
s[x++] = "Large Houses & Commercial Properties^Large_Houses___Commercial_Properties.htm^200mm long to fit 22mm pipework^^45^6.00^0^Large_Houses___Commercial_Properties.htm^0.00^PRAA102";
s[x++] = "Commercial Hard Water Descaler^Commercial_Hard_Water_Descaler.htm^300mm x 60mm diameter^^60^7.90^0^Commercial_Hard_Water_Descaler.htm^0.00^PRAA107";
s[x++] = "Scale Stopper for Hot Drinks Machines^Scale_Stopper_for_Hot_Drinks_Machines.htm^For pipes upto 15mm diameter^^30^3.50^0^Scale_Stopper_for_Hot_Drinks_Machines.htm^0.00^PRAA108";
s[x++] = "Boiler Magnet^Boiler_Magnet.htm^100mm long to fit 15mm pipework^^30^4.00^0^Boiler_Magnet.htm^0.00^PRAA103";
s[x++] = "Industrial-Commercial Boiler Magnet^Industrial-Commercial_Boiler_Magnet.htm^240mm x 60mm, for 60mm diameter pipe^^60^9.00^0^Industrial-Commercial_Boiler_Magnet.htm^0.00^PRAA104";
s[x++] = "Beer-mag beer line inhibitor^Beer-mag_beer_line_inhibitor.htm^12/15mm and 22mm diameter of pipe versions^^35^3.50^0^Beer-mag_beer_line_inhibitor.htm^0.00^PRAA106";
s[x++] = "One 15mm Water-mags Special Offer^One_15mm_Water-mags_Special_Offer.htm^Latest Special - 1 'shop soiled' Water-mag unit for £25.00^^25^4.00^0^One_15mm_Water-mags_Special_Offer.htm^0.00^PRAA110";


//--- ----------------------------------------------
//--- 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",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("UK shipping","0",0,"UK. Within the mainland of the UK",10000,100,0,0,0,0,0,"peritem")
zoneWeight[1] = new Array();

