// bracelet.js

itemSet = new Array(
  new Item('fanjlenb.html','fanjlenb_h100.jpg','Genuine fancy jasper coin bracelet with toggle clasp'),
  new Item('dalmbg0207.html','dalmbg0207_h100.jpg','Genuine Dalmatian jasper with goldtone accents bracelet with foldover clasp'),
  new Item('rhodcrb0207.html','rhodcrb0207_h100.jpg','Genuine pink rhodochrosite cross bracelet with toggle clasp'),
  new Item('popjcopb0207.html','popjcopb0207_h100.jpg','Genuine poppy red jasper and copper bracelet with toggle clasp'),
  new Item('popjgb0207.html','popjgb0207_h100.jpg','Genuine poppy red jasper bracelet with goldtoned toggle clasp'),
  new Item('poppdjb0207.html','poppdjb0207_h100.jpg','Amethyst with Swarovski crystals and faux pearls necklace-earring set'),
  new Item('dalmbs0207.html','dalmbs0207_h100.jpg','Genuine Dalmatian jasper bracelet with silvertone toggle clasp'),
  new Item('leojbg0207.html','leojbg0207_h100.jpg','Genuine leopardskin jasper and gold plate bracelet with toggle clasp')
  //new Item('.html','_h100.jpg','')
);

function Item(url,src,title) {
  this.url = url;
  this.src = src;
  this.title = title;
}
