<!-- This script created by http://www.vasih.com copyright 2006 -->

<!-- Begin

var theCustomers = new Array();
var theCustomersLinks = new Array();

theCustomers[0] = '/images/logo_black_decker.gif';
theCustomersLinks[0] = '/customers/index.html';
theCustomers[1] = '/images/logo_welchs.gif';
theCustomersLinks[1] = '/customers/index.html';
theCustomers[2] = '/images/logo_chiquita.gif';
theCustomersLinks[2] = '/customers/index.html';
theCustomers[3] = '/images/logo_fe.gif';
theCustomersLinks[3] = '/customers/index.html';
theCustomers[4] = '/images/logo_hampton.gif';
theCustomersLinks[4] = '/customers/index.html';
theCustomers[5] = '/images/logo_coty.gif';
theCustomersLinks[5] = '/customers/index.html';
theCustomers[6] = '/images/logo_perrigo.gif';
theCustomersLinks[6] = '/customers/index.html';
theCustomers[7] = '/images/logo_kelloggs.gif';
theCustomersLinks[7] = '/customers/index.html';
theCustomers[8] = '/images/logo_clorox.gif';
theCustomersLinks[8] = '/customers/index.html';
theCustomers[9] = '/images/logo_energizer.gif';
theCustomersLinks[9] = '/customers/index.html';
//theCustomers[10] = '/images/logo_maltomeal.gif';
//theCustomersLinks[10] = '/customers/index.html';
theCustomers[10] = '/images/logo_rayovac.gif';
theCustomersLinks[10] = '/customers/index.html';
theCustomers[11] = '/images/logo_spectrumbrands.gif';
theCustomersLinks[11] = '/customers/index.html';
theCustomers[12] = '/images/logo_beiersdorf.gif';
theCustomersLinks[12] = '/customers/index.html';
theCustomers[13] = '/images/logo_agc.gif';
theCustomersLinks[13] = '/customers/index.html';
theCustomers[14] = '/images/logo_daisy.gif';
theCustomersLinks[14] = '/customers/index.html';
theCustomers[15] = '/images/logo_oceanspray.gif';
theCustomersLinks[15] = '/customers/index.html';
theCustomers[16] = '/images/logo_reckitt.gif';
theCustomersLinks[16] = '/customers/index.html';
theCustomers[17] = '/images/logo_vi-jon.gif';
theCustomersLinks[17] = '/customers/index.html';

// do not edit anything below this line

var i = 0
var x = theCustomers.length;
var preBuffer = new Array()
for (i = 0; i < x; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theCustomers[i]
}
var whichImage = Math.round(Math.random()*(x-1));
function showCustomers(){
document.write('<a href="'+theCustomersLinks[whichImage]+'"><img src="'+theCustomers[whichImage]+'" border="0"></a>');
}

//  End -->