//-- 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
var s = new Array();
var x=0;

s[x++] = "5' Nordmann Fir^5'_Nordmann_Fir.htm^Limited needle drop^^180^0.00^17.5^5'_Nordmann_Fir.htm^0.00^PRAA100";
s[x++] = "6' Nordmann Fir^6'_Nordmann_Fir.htm^Limited needle drop^^195^0.00^17.5^6'_Nordmann_Fir.htm^0.00^PRAA101";
s[x++] = "7' Nordmann Fir^7'_Nordmann_Fir.htm^Limited needle drop^^245^0.00^17.5^7'_Nordmann_Fir.htm^0.00^PRAA102";
s[x++] = "8' Nordmann Fir^8'_Nordmann_Fir.htm^Limited needle drop^^295^0.00^17.5^8'_Nordmann_Fir.htm^0.00^PRAA103";
s[x++] = "10' Nordmann Fir^10'_Nordmann_Fir.htm^Limited needle drop^^395^0.00^17.5^10'_Nordmann_Fir.htm^0.00^PRAA105";
s[x++] = "12' Nordmann Fir^12'_Nordmann_Fir.htm^Limited needle drop^^595^0.00^17.5^12'_Nordmann_Fir.htm^0.00^PRAA107";
s[x++] = "15' Norwegian Spruce^15'_Norwegian_Spruce.htm^^^0^0.00^17.5^15'_Norwegian_Spruce.htm^0.00^PRAA108";
s[x++] = "20' Norwegian Spruce^20'_Norwegian_Spruce.htm^^^0^0.00^17.5^20'_Norwegian_Spruce.htm^0.00^PRAA109";
s[x++] = "5' Artificial Tree^5'_Artificial_Tree.htm^^^215^0.00^17.5^5'_Artificial_Tree.htm^0.00^PRAA112";
s[x++] = "6' Artificial Tree^6'_Artificial_Tree.htm^^^245^0.00^17.5^6'_Artificial_Tree.htm^0.00^PRAA113";
s[x++] = "7' Artificial Tree^7'_Artificial_Tree.htm^^^315^0.00^17.5^7'_Artificial_Tree.htm^0.00^PRAA114";
s[x++] = "8' Artificial Tree^8'_Artificial_Tree.htm^^^375^0.00^17.5^8'_Artificial_Tree.htm^0.00^PRAA115";
s[x++] = "10' Artificial Tree^10'_Artificial_Tree.htm^^^545^0.00^17.5^10'_Artificial_Tree.htm^0.00^PRAA116";
s[x++] = "12' Artificial Tree^12'_Artificial_Tree.htm^^^0^0.00^17.5^12'_Artificial_Tree.htm^0.00^PRAA117";
s[x++] = "15' Artificial Tree^15'_Artificial_Tree.htm^^^1450^0.00^17.5^15'_Artificial_Tree.htm^0.00^PRAA118";
s[x++] = "20' Artificial Tree^20'_Artificial_Tree.htm^^^1975^0.00^17.5^20'_Artificial_Tree.htm^0.00^PRAA119";
s[x++] = "Water bowser^Water_bowser.htm^^^45^0.00^0.00^Water_bowser.htm^0.00^PRAA111";
s[x++] = "Artificial Wreaths^Artificial_Wreaths.htm^^^20^0.00^17.5^Artificial_Wreaths.htm^0.00^PRAA120";
s[x++] = "Decorative Parcels^Decorative_Parcels.htm^Three decorative parcels^^5^0.00^17.5^Decorative_Parcels.htm^0.00^PRAA121";
s[x++] = "Floral Arrangements and Poinsettias^Floral_Arrangements_and_Poinsettias.htm^^^10^0.00^17.5^Floral_Arrangements_and_Poinsettias.htm^0.00^PRAA122";
s[x++] = "Artificial Garlands^Artificial_Garlands.htm^^^40^0.00^17.5^Artificial_Garlands.htm^0.00^PRAA123";


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

