var ProductName,ProductRef,Price,Weight,TaxCode,VARSLOT2,Per,Group;
var productData=new Array();
function setProductArrayData() {
// chairs
productData["the_qc"] = new pObject("q stool","the_qc",237,20.00,1,"",64.50);
productData["chair_01"] = new pObject("q stool","chair_01",165,20.00,1,"",64.35);
productData["chair_02"] = new pObject("q stool","chair_02",155,20.00,1,"",64.35);
productData["chair_03"] = new pObject("q stool","chair_03",192,20.00,1,"",64.35);
productData["chair_04"] = new pObject("q stool","chair_04",257,20.00,1,"",64.35);
productData["chair_05"] = new pObject("q stool","chair_05",231,20.00,1,"",64.35);
productData["chair_06"] = new pObject("q stool","chair_06",255,20.00,1,"",64.35);
productData["chair_07"] = new pObject("q stool","chair_07",235,20.00,1,"",64.35);
productData["chair_08"] = new pObject("q throne","chair_08",251,20.00,1,"",64.35);
productData["chair_09"] = new pObject("q throne","chair_09",565,40.00,1,"",94.35);
productData["chair_10"] = new pObject("q stool","chair_10",277,20.00,1,"",64.35);
productData["chair_01_fp"] = new pObject("flat pack stool","chair_01_fp",206,20.00,1,"",64.35);
productData["chair_02_fp"] = new pObject("q stool","chair_02_fp",237,20.00,1,"",64.35);
productData["chair_03_fp"] = new pObject("q stool","chair_03_fp",237,20.00,1,"",64.35);
// accessoires
productData["d_01"] = new pObject("headsling","d_01",41,5.00,1,"",5.00);
productData["d_02"] = new pObject("extra cuffs","d_02",31,5.00,1,"",5.00);
productData["d_03"] = new pObject("curved pillow","d_03",55,5.00,1,"",5.00);
productData["d_04"] = new pObject("Sliding Cuffs","d_04",36,0,1,"",0);
productData["d_05"] = new pObject("single belt","d_05",3.5,0,1,"",0);
productData["d_05d"] = new pObject("double belt","d_05d",7,0,1,"",0);
productData["d_05t"] = new pObject("triple belt","d_05t",10,0,1,"",0);
productData["d_06"] = new pObject("mixed clips","d_06",19,0,1,"",0);
productData["d_07w"] = new pObject("wrist cuffs","d_07w",8,0,1,"",0);
productData["d_07a"] = new pObject("ankle cuffs","d_07a",16,0,1,"",0);
productData["d_07t"] = new pObject("thigh cuffs","d_07t",32,0,1,"",0);
productData["d_08_23"] = new pObject("chain 2.3mm","d_08_23",4.5,0,1,"",0);
productData["d_08_41"] = new pObject("chain 4.1mm","d_08_41",5.9,0,1,"",0);
// slopes
productData["slope_01"] = new pObject("the l.slope","slope_01",205,20,1,"",75.00);
productData["slope_02"] = new pObject("the slippery slope","slope_02",260,20.00,1,"",80.00);
// bondage
productData["bond_01"] = new pObject("heart of darkness","bond_01",90,15.00,1,"",37.25);
productData["bond_02"] = new pObject("the black block","bond_02",88,15.00,1,"",37.25);
productData["bond_03"] = new pObject("the bum drum","bond_03",82,15.00,1,"",37.25);
productData["bond_04"] = new pObject("the troi-angle","bond_04",85,15.00,1,"",37.25);
productData["bond_05"] = new pObject("neck cushion","bond_05",55,8.50,1,"",17.50);
}

function pObject(ProductName,ProductRef,Price,Weight,TaxCode,VARSLOT2,othership){
this.ProductName = ProductName;
this.ProductRef = ProductRef;
this.Price = Price;
this.Weight = Weight;
this.TaxCode = TaxCode;
this.VARSLOT2 = VARSLOT2;
this.othership = othership; // non uk delivery
return(this);
}//

function multiSetProductData(pkey){
ProductName	= productData[pkey].ProductName;
ProductRef	= productData[pkey].ProductRef;
Price		= productData[pkey].Price;
Weight		= productData[pkey].Weight;
TaxCode		= productData[pkey].TaxCode;
VARSLOT2	= productData[pkey].VARSLOT2;
othership	= productData[pkey].othership;
}//


