var loopcount=0;

images = new Array(17);

images[0] = "<a href = 'http://www.invatron.com/company/customers/index.html'><img src='images/client_ahold.jpg' alt='Ahold'></a>";

images[1] = "<a href = 'http://www.invatron.com/company/customers/index.html'><img src='images/client_andronicos.jpg' alt='Andronicos'></a>";

images[2] = "<a href = 'http://www.invatron.com/company/customers/index.html'><img src='images/client_bashas.jpg' alt='Bashas'></a>";

images[3] = "<a href = 'http://www.invatron.com/company/customers/index.html'><img src='images/client_brookshires.jpg' alt='Brookshires'></a>";

images[4] = "<a href = 'http://www.invatron.com/company/customers/index.html'><img src='images/client_gelsons.jpg' alt='Gelsons'></a>";

images[5] = "<a href = 'http://www.invatron.com/company/customers/index.html'><img src='images/client_gianteagle.jpg' alt='Giant Eagle'></a>";

images[6] = "<a href = 'http://www.invatron.com/company/customers/index.html'><img src='images/client_aandp.png' alt='The Great Atlantic and Pacific Tea Company'></a>";

images[7] = "<a href = 'http://www.invatron.com/company/customers/index.html'><img src='images/client_heb.jpg' alt='H-E-B'></a>";

images[8] = "<a href = 'http://www.invatron.com/company/customers/index.html'><img src='images/client_kroger.jpg' alt='Kroger'></a>";

images[9] = "<a href = 'http://www.invatron.com/company/customers/index.html'><img src='images/client_loblaw.png' alt='Loblaw'></a>";

images[10] = "<a href = 'http://www.invatron.com/company/customers/index.html'><img src='images/client_longos.jpg' alt='Longos'></a>";

images[11] = "<a href = 'http://www.invatron.com/company/customers/index.html'><img src='images/client_nga.png' alt='National Grocers'></a>";

images[12] = "<a href = 'http://www.invatron.com/company/customers/index.html'><img src='images/client_safeway.jpg' alt='Safeway'></a>";

images[13] = "<a href = 'http://www.invatron.com/company/customers/index.html'><img src='images/client_sainsburys.jpg' alt='Sainsburys'></a>";

images[14] = "<a href = 'http://www.invatron.com/company/customers/index.html'><img src='images/client_wegmans.jpg' alt='Wegmans'></a>";

images[15] = "<a href = 'http://www.invatron.com/company/customers/index.html'><img src='images/client_wholefoods.jpg' alt='Whole Foods'></a>";

images[16] = "<a href = 'http://www.invatron.com/company/customers/index.html'><img src='images/client_winndixie.jpg' alt='Winn Dixie'></a>";

while (loopcount < 8)
{
	index = Math.floor(Math.random() * images.length);
	
	if (images[index] != "")
	{
		document.write(images[index]);
		images[index] = "";
		loopcount ++;
	}
	
}
