//-- 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;



//--- ----------------------------------------------
//--- Define the Shipping Zones
var shippingZones   = new Array();
var zoneWeight      = new Array();   // weight^price
var taxItems      = new Array();   // taxcode^percent
var shippingPolicy  = "percartweight";

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);

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("United Kingdom","0",1,"UK. Within the mainland of the UK",10000,10000,0,1.35,0,0,0,"percartweight")
zoneWeight[1] = new Array();


shippingZones[x++] = new zone("Europe","0",1,"All countries in Europe",10000,10000,0,1.5,0,0,0,"percartweight")
zoneWeight[2] = new Array();
zoneWeight[2][0] = "1^1.50";
zoneWeight[2][1] = "100^2.50";
zoneWeight[2][2] = "220^3.00";
zoneWeight[2][3] = "340^4.00";
zoneWeight[2][4] = "500^5.00";
zoneWeight[2][5] = "700^6.00";
zoneWeight[2][6] = "920^8.50";
zoneWeight[2][7] = "1421^10.00";


shippingZones[x++] = new zone("Rest of the World","0",1,"The Rest of the World",10000,10000,0,2,0,0,0,"percartweight")
zoneWeight[3] = new Array();
zoneWeight[3][0] = "100^3.50";
zoneWeight[3][1] = "220^4.50";
zoneWeight[3][2] = "340^6.50";
zoneWeight[3][3] = "500^8.50";
zoneWeight[3][4] = "700^10.50";
zoneWeight[3][5] = "920^15.50";
zoneWeight[3][6] = "1420^18.00";

