//-- 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++] = "XM Ocean Rouge^XM_Ocean_Rouge.htm^^^245^0.00^0^XM_Ocean_Rouge.htm^0.00^PRAA125";
s[x++] = "XM Offshore^XM_Offshore.htm^^^123.5^0.00^0^XM_Offshore.htm^0.00^PRAA126";
s[x++] = "Gill Key West^Gill_Key_West.htm^^^139^0.00^0^Gill_Key_West.htm^0.00^PRAA127";
s[x++] = "Plastimo P200SH Inflatable^Plastimo_P200SH_Inflatable.htm^P200SH Inflatable^^284.95^0.00^0^Plastimo_P200SH_Inflatable.htm^0.00^PRAA111";
s[x++] = "Plastimo P270V Inflatable^Plastimo_P270V_Inflatable.htm^^^674.99^0.00^0^Plastimo_P270V_Inflatable.htm^0.00^PRAA112";
s[x++] = "Fusion Marine ipod player^Fusion_Marine_ipod_player.htm^Ipod Player^^299.99^0.00^0^Fusion_Marine_ipod_player.htm^0.00^PRAA109";
s[x++] = "Fusion Marine Speakers^Fusion_Marine_Speakers.htm^Marine Speakers^^60^0.00^0^Fusion_Marine_Speakers.htm^0.00^PRAA110";
s[x++] = "Navman Trackfish 6600 - Plotter GPS and Fishfinder^Navman_Trackfish_6600_-_Plotter_GPS_and_Fishfinder.htm^800 x 480 pixel resolution, for a highly detailed chart and sonar info.^^1426.95^0.00^0^Navman_Trackfish_6600_-_Plotter_GPS_and_Fishfinder.htm^0.00^PRAA100";
s[x++] = "Navman Multi 3100s^Navman_Multi_3100s.htm^Multi functional speed and depth Instrument with navbus system allowing any combination of displays with only one set of transducers.^^165.95^0.00^0^Navman_Multi_3100s.htm^0.00^PRAA101";
s[x++] = "Safety Flares Inshore Pack^Safety_Flares_Inshore_Pack.htm^For use less than 3 miles from land.^^47.5^0.00^0^Safety_Flares_Inshore_Pack.htm^0.00^PRAA104";
s[x++] = "Safety Flares Coastal Pack^Safety_Flares_Coastal_Pack.htm^For use less than 7 miles from land.^^93^0.00^0^Safety_Flares_Coastal_Pack.htm^0.00^PRAA105";
s[x++] = "Safety Flares Offshore Pack^Safety_Flares_Offshore_Pack.htm^For all vessels sailing more than 7 mile from land.^^187.5^0.00^0^Safety_Flares_Offshore_Pack.htm^0.00^PRAA106";
s[x++] = "Safety Flares RORC Pack^Safety_Flares_RORC_Pack.htm^Meets the regulations of Royal Ocean Racing Club.^^217.5^0.00^0^Safety_Flares_RORC_Pack.htm^0.00^PRAA107";
s[x++] = "Blakes Tiger Xtra^Blakes_Tiger_Xtra.htm^Blakes Tiger Xtra 2.5L^^66.95^0.00^0^Blakes_Tiger_Xtra.htm^0.00^PRAA102";
s[x++] = "Blakes Favourite Varnish^Blakes_Favourite_Varnish.htm^An Alkyd based, full bodied, high gloss varnish - 375ml.^^7.99^0.00^0^Blakes_Favourite_Varnish.htm^0.00^PRAA103";
s[x++] = "Comfort Backrest^Comfort_Backrest.htm^^^35^0.00^0^Comfort_Backrest.htm^0.00^PRAA119";
s[x++] = "Loko^Loko.htm^RTM Loko Kayak^^320^0.00^0^Loko.htm^0.00^PRAA113";
s[x++] = "Mambo^Mambo.htm^RTM Mambo Kayak^^340^0.00^0^Mambo.htm^0.00^PRAA114";
s[x++] = "Paseolux^Paseolux.htm^^^360^0.00^0^Paseolux.htm^0.00^PRAA115";
s[x++] = "Ocean Duo^Ocean_Duo.htm^RTM Ocean Duo Kayak^^450^0.00^0^Ocean_Duo.htm^0.00^PRAA116";
s[x++] = "Soft Roof Rack^Soft_Roof_Rack.htm^^^35^0.00^0^Soft_Roof_Rack.htm^0.00^PRAA120";
s[x++] = "Dry Bags^Dry_Bags.htm^^^20^0.00^0^Dry_Bags.htm^0.00^PRAA121";
s[x++] = "Dry Barrel^Dry_Barrel.htm^^^19.5^0.00^0^Dry_Barrel.htm^0.00^PRAA123";
s[x++] = "Waterproof Phone Case^Waterproof_Phone_Case.htm^^^14.99^0.00^0^Waterproof_Phone_Case.htm^0.00^PRAA122";
s[x++] = "Paddles^Paddles.htm^^^30^0.00^0^Paddles.htm^0.00^PRAA124";


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

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);
taxItems[x++] = new taxrate("inc 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("UK (Standard)","0",0,"All countries in Europe",10000,100,0,0,0,10,0,"perbasket")
zoneWeight[1] = new Array();
