<!--
var color_codes = new Array('olive', 'chocolateqv', 'manderine', 'navyqv');
item_name = 'QUILTED VEST';
item_descr = 'waterproof, warm and great for layering. this easy to wear jacket is a great fit for dogs of all sizes. made from coated 100% nylon quilting with velcro closure.  Colors: olive green with brown piping, chocolate with brown piping (shown), mandarin orange with brown piping or navy with brown piping.';

items[0] = new item('QV002','QUILTED VEST',50);
items[0].color_codes = new Array('olive', 'chocolateqv', 'manderine', 'navyqv');
items[0].showSizeChart = 'collar';
items[0].colors = new Array('Olive green with brown piping', 'Chocolate with brown piping', 'Mandarin orange with brown piping', 'Navy with brown piping' );
items[0].sizes = new Array('8&quot;', '10&quot;','12&quot;','14&quot;');

items[1] = new item('QV002','QUILTED VEST',70);
items[1].color_codes = new Array('olive', 'chocolateqv', 'manderine', 'navyqv');
items[1].showSizeChart = 'collar';
items[1].colors = new Array('Olive green with brown piping', 'Chocolate with brown piping', 'Mandarin orange with brown piping', 'Navy with brown piping' );
items[1].sizes = new Array('16&quot;', '18&quot;','20&quot;','22&quot;');

//-->