//-- The symbol to use for the javascript trolley and checkout
MonetarySymbol	= "$"
//-- 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++] = "Intro Kit^Intro_Kit.htm^Krystal Model Tray Intro Kit^^90^0.00^0.00^Intro_Kit.htm^0.00^KRIK-US";
s[x++] = "Krystal Full Tray Re-order Pack^Krystal_Full_Tray_Re-order_Pack.htm^Krystal Full Tray Re-order Pack^^85.5^0.00^0.00^Krystal_Full_Tray_Re-order_Pack.htm^0.00^KRRP";
s[x++] = "Krystal Quad Tray Right^Krystal_Quad_Tray_Right.htm^Krystal Quadrant Tray - Right^^76.5^0.00^0.00^Krystal_Quad_Tray_Right.htm^0.00^KRRPQ-R";
s[x++] = "Krystal Quad Tray Left^Krystal_Quad_Tray_Left.htm^^^76.5^0.00^0.00^Krystal_Quad_Tray_Left.htm^0.00^KRRP-L";
s[x++] = "Orange Casting Tongue^Orange_Casting_Tongue.htm^Krystal Orange Casting Tongue^^31.5^0.00^0.00^Orange_Casting_Tongue.htm^0.00^PRAA106";
s[x++] = "White Working Tongues^White_Working_Tongues.htm^White Krystal Working Tongues^^31.5^0.00^0.00^White_Working_Tongues.htm^0.00^PRAA107";
s[x++] = "Krystal Safe Transit Cover^Krystal_Safe_Transit_Cover.htm^Krystal Safe transit cover for Krystal Model Trays^^69.5^0.00^0.00^Krystal_Safe_Transit_Cover.htm^0.00^KRS";
s[x++] = "Articulation Plate^Articulation_Plate.htm^Krystal Articulation Plate^^47.5^0.00^0.00^Articulation_Plate.htm^0.00^KRSA";
s[x++] = "Articulation Magnets^Articulation_Magnets.htm^Krystal Articulation Magnets^^63.5^0.00^0.00^Articulation_Magnets.htm^0.00^KRAM";
s[x++] = "Blocking Out Putty^Blocking_Out_Putty.htm^Blocking Out Putty^^39^0.00^0.00^Blocking_Out_Putty.htm^0.00^SISP";
s[x++] = "Silicone Spray^Silicone_Spray.htm^SnapSlip Silicone Spray^^21^0.00^0.00^Silicone_Spray.htm^0.00^SLSSL";
s[x++] = "Separating Mallaet^Separating_Mallaet.htm^Separating Mallet^^19.75^0.00^0.00^Separating_Mallaet.htm^0.00^SLT";
s[x++] = "Dispenser^Dispenser.htm^Krystal Model Tray Wall Dispenser^^44.5^0.00^0.00^Dispenser.htm^0.00^KRD";
s[x++] = "Tongue Remover^Tongue_Remover.htm^SnapFree Tongue Removing Tool^^5^0.00^0.00^Tongue_Remover.htm^0.00^SLSF";
s[x++] = "Krystal Model Tray Printing^Krystal_Model_Tray_Printing.htm^Krystal Model Tray Printing^^99^0.00^0.00^Krystal_Model_Tray_Printing.htm^0.00^KRP";
s[x++] = "Krystal Printing Plate^Krystal_Printing_Plate.htm^Krystal Printing Plate^^50^0.00^15^Krystal_Printing_Plate.htm^0.00^KRSET";


//--- ----------------------------------------------
//--- 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",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("UPS Ground - US Mainland","0",1,"USA Mainland-UPS Ground",150,100,0,0,0,14.5,0,"perbasket")
zoneWeight[1] = new Array();
