// JavaScript Document
//list merchants here...
var items_array=new Array(
'<a href="http://www.meancoupons.com/diamond/">Diamond.com</a>',
'<a href="http://www.meancoupons.com/limoges/">Limoges Jewelry</a>',
'<a href="http://www.meancoupons.com/goldspeed/">Goldspeed</a>',
'<a href="http://www.meancoupons.com/watch_zone/">WatchZone</a>',
'<a href="http://www.meancoupons.com/heavenly_treasures/">Heavenly Treasures</a>',
'<a href="http://www.meancoupons.com/body_candy/">Body Candy</a>',
'<a href="http://www.meancoupons.com/ewatches/">eWatches</a>',
'<a href="http://www.meancoupons.com/ross_simons/">Ross-Simons</a>',
'<a href="http://www.meancoupons.com/bacario/">Bacario.com</a>',
'<a href="http://www.meancoupons.com/jewel_basket/">Jewel Basket</a>',
'<a href="http://www.meancoupons.com/bidz/">Bidz</a>',
'<a href="http://www.meancoupons.com/szul/">Szul</a>',
'<a href="http://www.meancoupons.com/kenmar_watches/">Kenmar Watches</a>',
'<a href="http://www.meancoupons.com/meijer/">Meijer.com</a>',
'<a href="http://www.meancoupons.com/princeton_watches/">Princeton Watches</a>',
'<a href="http://www.meancoupons.com/stauer/">Stauer</a>',
'<a href="http://www.meancoupons.com/golden_mine/">GoldenMine.com</a>',
'<a href="http://www.meancoupons.com/jewelry_vortex/">JewelryVortex</a>',
'<a href="http://www.meancoupons.com/my_jewelry_box/">My Jewelry Box</a>',
'<a href="http://www.meancoupons.com/suunto_watches/">Suunto Watches</a>',
'<a href="http://www.meancoupons.com/portero_luxury/">Portero Luxury</a>',
'<a href="http://www.meancoupons.com/shopnbc/">ShopNBC</a>'
);

//sorting of merchants
var merchant_array=items_array.sort();

//count merchants
var item_count=merchant_array.length;

//display merchants
document.write('<table cellspacing="0" cellpadding="2" width="106%" border="0">');
for(i=0;i<item_count;i++)
{  
document.write('<tr>');
if(merchant_array[i]!=null)
{
document.write('<td width="237" align="left">'+merchant_array[i]+'</td>');
}
if(merchant_array[i+1]!=null)
{
document.write('<td width="237" align="left">'+merchant_array[i+1]+'</td>');  
}
if(merchant_array[i+2]!=null)
{
document.write('<td width="237" align="left">'+merchant_array[i+2]+'</td>'); 
}
document.write('</tr>');
document.write('<tr>');
document.write('<td height="5px" colspan="3"></td>');
document.write('</tr>');
i=i+2;
}
document.write('</table>');


