function item_desc (xSeries,xUsage,xFeatures,xImage,xModel,xDescription,xLength,xWidth,xHeight,xChannelW,xChannelH,xColour,xWeight,xLoad,xNotes) {
  this.xSeries = xSeries
  this.xUsage = xUsage
  this.xFeatures = xFeatures
  this.xImage = xImage
  this.xModel = xModel
  this.xDescription = xDescription
  this.xLength = xLength
  this.xWidth = xWidth
  this.xHeight = xHeight
  this.xChannelW = xChannelW
  this.xChannelH = xChannelH
  this.xColour = xColour
  this.xWeight = xWeight
  this.xLoad = xLoad
  this.xNotes = xNotes
}

var myData= new Array(7)
myData[0] = new item_desc( "Series","Usage","Features","Image","Model","Description","Length (A)","Width (B)","Height (C)","C-Width (D)","C-Height (E)","Colour","Weight/ft","Load","Notes")
myData[1] = new item_desc( "SpotLights","12 VOLT","0","HS-400C.jpg","HS-400C","400,000 Candle Power 12V COMPACT","0","0","0","0","0","black","0.5","0","0")
myData[2] = new item_desc( "SpotLights","12 VOLT","0","HS-800C.jpg","HS-800C","800,000 Candle Power 12V COMPACT","0","0","0","0","0","black","0.5","0","0")
myData[3] = new item_desc( "SpotLights","12 VOLT","0","XL-1000.jpg","XL-1000","1 million Candle Power 12V","0","0","0","0","0","black","1","0","XL-1000C.PDF")
myData[4] = new item_desc( "SpotLights","12 VOLT","0","XL-1800.jpg","XL-1800","2 million Candle Power 12V","0","0","0","0","0","black","1","0","XL-1800C.PDF")
myData[5] = new item_desc( "SpotLights","RECHARGEABLE","0","RC-1100N.jpg","RC-1100N","1 million Candle Power, 12v & 240v Chargers","0","0","0","0","0","black","2.5","0","0")
myData[6] = new item_desc( "SpotLights","RECHARGEABLE","0","RC-3800.jpg","RC-3800","2 million Candle Power 12V & 240V Chargers","0","0","0","0","0","black","2.5","0","RC3800.PDF")



