


var items = [
  {
    'name' : 'Floor/Door Mat',
    'size' : [ 'Large','Small' ],
    'dimension' : [ '24" x 32"','18" x 30"' ],
    'price' : [ 210,145 ],
    'weight' : [ 22,18 ],
    'discount' : [ '0','0' ],
    'instock' : [ 10,0 ]
  },

  {
    'name' : 'Place Mat',
    'size' : [ 'Large','Small' ],
    'dimension' : [ '11" x 16"','9" x 12"' ],
    'price' : [ 48,23 ],
    'weight' : [ 3,2 ],
    'discount' : [ '0.05@6','0.05@6' ],
    'instock' : [ 5,5 ]
  },

  {
    'name' : 'Table Runner',
    'size' : [ 'Large','Medium','Small' ],
    'dimension' : [ '13" x 55"','13" x 47"','13" x 40"' ],
    'price' : [ 230,190,160 ],
    'weight' : [ 20,18,16 ],
    'discount' : [ '0','0','0' ],
    'instock' : [ 1,2,2 ]
  },

  {
    'name' : 'Custom Mat',
    'size' : [ 'custom' ],
    'dimension' : [ 'custom' ],
    'price' : [ 0 ],
    'weight' : [ 0 ],
    'discount' : [ '0' ],
    'instock' : [ 0 ]
  }
];
