//-- 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++] = "Maxum^Maxum.htm^Kablemate Maxum^^99^12.95^15^Maxum.htm^0.00^PRAA100";
s[x++] = "Maxi^Maxi.htm^Kablemate Maxi^^62.5^12.95^15^Maxi.htm^0.00^PRAA101";
s[x++] = "Junior^Junior.htm^Kablemate Junior^^45^9.95^15^Junior.htm^0.00^PRAA102";
s[x++] = "Tie Wrap Tidy^Tie_Wrap_Tidy.htm^Tie Wrap Tidy^^7.5^2.95^15^Tie_Wrap_Tidy.htm^0.00^PRAA112";
s[x++] = "Handy Grab^Handy_Grab.htm^Handy Grab^^27.5^3.95^15^Handy_Grab.htm^0.00^PRAA104";
s[x++] = "Draw Wire^Draw_Wire.htm^Kablemate Draw Wire^^4^2.95^15^Draw_Wire.htm^0.00^PRAA105";
s[x++] = "Quick Rod Kit^Quick_Rod_Kit.htm^Quick Rod Kit^^55^9.95^15^Quick_Rod_Kit.htm^0.00^PRAA106";
s[x++] = "Mega Set Kit^Mega_Set_Kit.htm^Mega Draw Rod Set^^110^9.95^15^Mega_Set_Kit.htm^0.00^PRAA113";
s[x++] = "MiniStep^MiniStep.htm^Fibreglass Swingback Steps^^80^12.95^15^MiniStep.htm^0.00^PRAA107";
s[x++] = "JuniorStep^JuniorStep.htm^Glass Fibre Steps^^99^12.95^15^JuniorStep.htm^0.00^PRAA108";
s[x++] = "MaxStep^MaxStep.htm^^^175^12.95^15^MaxStep.htm^0.00^PRAA109";
s[x++] = "Telescopic Ladders^Telescopic_Ladders.htm^Aluminium Telescopic Ladders^^195^12.95^15^Telescopic_Ladders.htm^0.00^PRAA110";
s[x++] = "Cavity Master^Cavity_Master.htm^Cavity Master^^75^9.95^15^Cavity_Master.htm^0.00^PRAA114";
s[x++] = "MiniBar^MiniBar.htm^Kablemate Mini-Bars for Kablemate MAXUM^^10^0.00^15^MiniBar.htm^0.00^PRAA115";
s[x++] = "Quick Change Bar^Quick_Change_Bar.htm^Quick Change Bar^^10^0.00^15^Quick_Change_Bar.htm^0.00^PRAA116";
s[x++] = "One off^One_off.htm^Digital Aerial Work^^52^0.00^0.00^One_off.htm^0.00^PRAA117";


//--- ----------------------------------------------
//--- 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",15);
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("UK. Mainland.","VAT",0,"UK. Within the mainland of the UK",300,50,0,2.95,0,0,0,"peritem")
zoneWeight[1] = new Array();


shippingZones[x++] = new zone("Europe.","VAT",0,"All countries in Europe",150,100,0,9.95,0,0,0,"peritem")
zoneWeight[2] = new Array();


shippingZones[x++] = new zone("Rest of World","VAT",0,"All states in United States of America",150,100,0,14.95,0,0,0,"peritem")
zoneWeight[3] = new Array();


shippingZones[x++] = new zone("Zero","",0,"",150,100,0,0,0,0,0,"peritem")
zoneWeight[4] = new Array();
