//-- 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++] = "'999' Fleece Hoodie^'999'_Fleece_Hoodie.htm^'999' Emergency vehicle soft fleece hoodie top^Fleece clothing, children's clothing^13.95^0.00^0.00^'999'_Fleece_Hoodie.htm^0.00^PRAA101";
s[x++] = "Purple 'Helicopter' Fleece Hoodie^Purple_'Helicopter'_Fleece_Hoodie.htm^'Helicopter' soft fleece hoodie top^children's clothing, fleece tops^13.95^0.00^0.00^Purple_'Helicopter'_Fleece_Hoodie.htm^0.00^PRAA103";
s[x++] = "'Dinosaur' Red Fleece Hoodie^'Dinosaur'_Red_Fleece_Hoodie.htm^'Dinosaur' soft fleece Hoodie Top^children's clothing, fleece tops, baby and children's clothing, hoodie tops^13.95^0.00^0.00^'Dinosaur'_Red_Fleece_Hoodie.htm^0.00^PRAA105";
s[x++] = "Black 'Skull and Crossbones' Fleece Hoodie^Black_'Skull_and_Crossbones'_Fleece_Hoodie.htm^Black 'Skull & Crossbones' soft fleece Hoodie Top^children's clothing, fleece tops, baby and children's clothing^13.95^0.00^0.00^Black_'Skull_and_Crossbones'_Fleece_Hoodie.htm^0.00^PRAA108";
s[x++] = "Navy with Lime stitching Fleece Hoodie^Navy_with_Lime_stitching_Fleece_Hoodie.htm^Navy with Lime stitching soft fleece Hoodie Top^children's clothing, fleece tops, baby and children's clothing^13.95^0.00^0.00^Navy_with_Lime_stitching_Fleece_Hoodie.htm^0.00^PRAA111";
s[x++] = "Pink with Lime stitching Fleece Hoodie^Pink_with_Lime_stitching_Fleece_Hoodie.htm^Pink with lime stitching soft fleece Hoodie Top^children's clothing, fleece tops, baby and children's clothing^13.95^0.00^0.00^Pink_with_Lime_stitching_Fleece_Hoodie.htm^0.00^PRAA112";
s[x++] = "'Funky Flower' Fleece Hoodie^'Funky_Flower'_Fleece_Hoodie.htm^'Funky Flower' Fleece Hoodie Top^children's clothing, fleece, hoodie top,^13.95^0.00^0^'Funky_Flower'_Fleece_Hoodie.htm^0.00^PRAA113";
s[x++] = "'Jungle' Fleece Hoodie^'Jungle'_Fleece_Hoodie.htm^Soft, Warm, Fleece 'Jungle Hoodie Top^children's clothing, hoodie tops, fleece tops, hoodies^13.95^0.00^0^'Jungle'_Fleece_Hoodie.htm^0.00^PRAA114";
s[x++] = "'Jungle' Fleece Top^'Jungle'_Fleece_Top.htm^'Jungle' soft fleece collar top^children's clothing, fleece tops^13.95^0.00^0.00^'Jungle'_Fleece_Top.htm^0.00^PRAA104";
s[x++] = "Red 'Skull and Crossbones' Fleece Hoodie^Red_'Skull_and_Crossbones'_Fleece_Hoodie.htm^Red 'Skull and Crossbones' Fleece Hoodie Top^childrens clothing, fleece tops, hoodie tops^13.95^0.00^0^Red_'Skull_and_Crossbones'_Fleece_Hoodie.htm^0.00^PRAA115";
s[x++] = "Red 'Skull and Crossbones' Fleece Top^Red_'Skull_and_Crossbones'_Fleece_Top.htm^Red 'Skull & Crossbones soft fleece Collar Top^children's clothing, fleece tops, baby and children's clothing^13.95^0.00^0.00^Red_'Skull_and_Crossbones'_Fleece_Top.htm^0.00^PRAA109";
s[x++] = "'Blue Stripe' Fleece Hoodie^'Blue_Stripe'_Fleece_Hoodie.htm^'Blue Stripe' Fleece Hoodie Top^childrens clothing, fleece tops, hoodie tops^13.95^0.00^0^'Blue_Stripe'_Fleece_Hoodie.htm^0.00^PRAA116";
s[x++] = "'Blue Cars' Fleece Hoodie^'Blue_Cars'_Fleece_Hoodie.htm^'Blue Cars' Fleece Hoodie Top^childrens clothing, fleece tops, hoodie tops^13.95^0.00^0^'Blue_Cars'_Fleece_Hoodie.htm^0.00^PRAA117";
s[x++] = "Blue 'Helicopter' Fleece Hoodie^Blue_'Helicopter'_Fleece_Hoodie.htm^Blue 'Helicopter' Fleece Hoodie Top^childrens clothing, fleece tops, hoodie tops, hoodies^13.95^0.00^0^Blue_'Helicopter'_Fleece_Hoodie.htm^0.00^PRAA119";
s[x++] = "'Funky Flower'  Fleece Top^'Funky_Flower'__Fleece_Top.htm^'Funky Flower, soft fleece collar top^children's clothing, baby and children's clothing.^13.95^0.00^0.00^'Funky_Flower'__Fleece_Top.htm^0.00^PRAA102";
s[x++] = "'Cartoon Pirates' Fleece Top^'Cartoon_Pirates'_Fleece_Top.htm^'Cartoon Pirates' soft fleece Collar Top^children's clothing, fleece tops, baby and children's clothing^13.95^0.00^0.00^'Cartoon_Pirates'_Fleece_Top.htm^0.00^PRAA106";


//--- ----------------------------------------------
//--- 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 Mainland FREE!","0",0,"All countries in Europe",150,100,0,0,0,0,0,"peritem")
zoneWeight[1] = new Array();

