//-- 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++] = "Luxury Mixed Fruit Scone Mix^Luxury_Mixed_Fruit_Scone_Mix.htm^We've taken generous portions of seven dried fruits and blended them together in our unique recipe to create a truly luxurious scone, filled with chunks of fruity flavour.^^3.99^0.00^0^Luxury_Mixed_Fruit_Scone_Mix.htm^1.00^PRAA100";
s[x++] = "Cranberry and White Chocolate Scone Mix^Cranberry_and_White_Chocolate_Scone_Mix.htm^All the super-food goodness of cranberry combined with the sweet naughtiness of rich white chocolate in one of our most popular flavour combinations.^^3.99^0.00^0^Cranberry_and_White_Chocolate_Scone_Mix.htm^1.00^PRAA101";
s[x++] = "Apricot and White Chocolate Scone Mix^Apricot_and_White_Chocolate_Scone_Mix.htm^Lots of delicious juicy apricots and the chunks of yummy white Belgian chocolate make this unique scone a heavenly treat.^^3.99^0.00^0^Apricot_and_White_Chocolate_Scone_Mix.htm^1.00^PRAA102";
s[x++] = "Date and Walnut Scone Mix^Date_and_Walnut_Scone_Mix.htm^<strong>The classic combination of dates and walnuts lend themselves well to Ruthy's succulent scones, each bite full of nutty, sweet loveliness.</strong>^^3.99^0.00^0^Date_and_Walnut_Scone_Mix.htm^1.00^PRAA103";
s[x++] = "Wholemeal Raisin and Cinnamon Scone Mix^Wholemeal_Raisin_and_Cinnamon_Scone_Mix.htm^Deliciously good for you! This tasty treat is bursting with California Raisins - healthy and nutritious. A guilt-free treat you can enjoy everyday!^^3.99^0.00^0^Wholemeal_Raisin_and_Cinnamon_Scone_Mix.htm^1.00^PRAA105";
s[x++] = "Stem Ginger and Chocolate Scone Mix^Stem_Ginger_and_Chocolate_Scone_Mix.htm^This tangy treat packs a flavour punch, pieces of flavoursome stem ginger combined with luxurious milk chocolate in this deliciously unusual combination.^^3.99^0.00^0^Stem_Ginger_and_Chocolate_Scone_Mix.htm^1.00^PRAA106";
s[x++] = "Organic Plain Scone Mix^Organic_Plain_Scone_Mix.htm^The finest ingredients create the finest results.  Enjoy a classic scone or add you favourite grated cheese and mustard to create your perfect savoury treat for everybody to enjoy.^^3.99^0.00^0^Organic_Plain_Scone_Mix.htm^1.00^PRAA107";
s[x++] = "Wholemeal Banana & Date^Wholemeal_Banana___Date.htm^Giving a natural banana flavour and texture to this healthy wholemeal scone, just perfect!^^3.99^0.00^0.00^Wholemeal_Banana___Date.htm^0.00^PRAA108";


//--- ----------------------------------------------
//--- 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",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 Delivery","0",0,"All countries in Europe",150,100,0,0,0,0,0,"percartweight")
zoneWeight[1] = new Array();
zoneWeight[1][0] = "1^3.00";
zoneWeight[1][1] = "4^5.00";
zoneWeight[1][2] = "7^8.00";
