//-- 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++] = "Blankenberge Weekend Getaway^Blankenberge_Weekend_Getaway.htm^1st - 3rd April 2011^^139^0.00^0^Blankenberge_Weekend_Getaway.htm^0.00^PRAA135";
s[x++] = "Bournemouth Bargain^Bournemouth_Bargain.htm^3rd - 7th October 2011^^199^0.00^0^Bournemouth_Bargain.htm^0.00^PRAA140";
s[x++] = "Explore the Channel Isles^Explore_the_Channel_Isles.htm^9th - 16th September 2011^^499^0.00^0^Explore_the_Channel_Isles.htm^0.00^PRAA137";
s[x++] = "Eastbourne January Jolly^Eastbourne_January_Jolly.htm^24th - 28th January 2011^^139^0.00^0^Eastbourne_January_Jolly.htm^0.00^PRAA126";
s[x++] = "Falmouth Turkey & Tinsel^Falmouth_Turkey___Tinsel.htm^28th November - 2nd December 2011^^219^0.00^0^Falmouth_Turkey___Tinsel.htm^0.00^PRAA143";
s[x++] = "Forest of Dean Exploration^Forest_of_Dean_Exploration.htm^26th - 30th September 2011^^229^0.00^0^Forest_of_Dean_Exploration.htm^0.00^PRAA139";
s[x++] = "Eastern Festival Week^Eastern_Festival_Week.htm^12th - 16th September 2011^^209^0.00^0^Eastern_Festival_Week.htm^0.00^PRAA138";
s[x++] = "Dublin February Break^Dublin_February_Break.htm^21st - 24th February 2011^^199^0.00^0^Dublin_February_Break.htm^0.00^PRAA134";
s[x++] = "Dublin & Donegal - Irish Jig^Dublin___Donegal_-_Irish_Jig.htm^9th - 15th October 2011^^299^0.00^0^Dublin___Donegal_-_Irish_Jig.htm^0.00^PRAA145";
s[x++] = "Llandudno in April^Llandudno_in_April.htm^11th - 15th April 2011^^249^0.00^0^Llandudno_in_April.htm^0.00^PRAA127";
s[x++] = "Llandudno Turkey & Tinsel^Llandudno_Turkey___Tinsel.htm^7th - 11th November 2011^^259^0.00^0^Llandudno_Turkey___Tinsel.htm^0.00^PRAA141";
s[x++] = "Love Never Dies Theatre Weekend^Love_Never_Dies_Theatre_Weekend.htm^7th - 8th May 2011^^149^0.00^0^Love_Never_Dies_Theatre_Weekend.htm^0.00^PRAA149";
s[x++] = "Summer in Scarborough^Summer_in_Scarborough.htm^26th June - 1st July 2011^^279^0.00^0^Summer_in_Scarborough.htm^0.00^PRAA131";
s[x++] = "Scarborough £1 BAR^Scarborough_£1_BAR.htm^12th - 16th December 2011^^169^0.00^0^Scarborough_£1_BAR.htm^0.00^PRAA144";
s[x++] = "Lakes, Highlands and Tattoo^Lakes,_Highlands_and_Tattoo.htm^21st - 28th August 2011^^399^0.00^0^Lakes,_Highlands_and_Tattoo.htm^0.00^PRAA132";
s[x++] = "Torquay Spectacular^Torquay_Spectacular.htm^30th April - 6th May 2011^^269^0.00^0^Torquay_Spectacular.htm^0.00^PRAA128";
s[x++] = "Nethway Turkey & Tinsel 2011^Nethway_Turkey___Tinsel_2011.htm^21st - 25th November 2011^^209^0.00^0^Nethway_Turkey___Tinsel_2011.htm^0.00^PRAA142";
s[x++] = "Alec Marlow's group holiday to Weston-super-mare^Alec_Marlow's_group_holiday_to_Weston-super-mare.htm^28th May - 3rd June 2011^^299^0.00^0^Alec_Marlow's_group_holiday_to_Weston-super-mare.htm^0.00^PRAA130";
s[x++] = "Glorious Weymouth^Glorious_Weymouth.htm^23rd - 27th May 2011^^249^0.00^0^Glorious_Weymouth.htm^0.00^PRAA129";
s[x++] = "War on the Line^War_on_the_Line.htm^10th - 12th June 2011^^119^0.00^0^War_on_the_Line.htm^0.00^PRAA136";
s[x++] = "Super Saver Holiday^Super_Saver_Holiday.htm^Dates available!^^159^0.00^0^Super_Saver_Holiday.htm^0.00^PRAA146";
s[x++] = "Dickens Christmas Markets^Dickens_Christmas_Markets.htm^2nd - 5th December 2011^^219^0.00^0^Dickens_Christmas_Markets.htm^0.00^PRAA150";
s[x++] = "Christmas in Folkestone^Christmas_in_Folkestone.htm^23rd - 27th December 2011^^279^0.00^0^Christmas_in_Folkestone.htm^0.00^PRAA147";


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

