// JavaScript Document
//list merchants here...
var items_array=new Array(
'<a href="http://www.meancoupons.com/animal_den/">Animal Den</a>',
'<a href="http://www.meancoupons.com/entirelypets/">EntirelyPets</a>',
'<a href="http://www.meancoupons.com/pet_care_choice/">PetCareChoice</a>',
'<a href="http://www.meancoupons.com/sitstay/">SitStay</a>',
'<a href="http://www.meancoupons.com/rapidbath/">RapidBath</a>',
'<a href="http://www.meancoupons.com/oster/">Oster</a>',
'<a href="http://www.meancoupons.com/wysong/">Wysong</a>',
'<a href="http://www.meancoupons.com/big_als_online/">Big Al\'s Online</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>');

