
//reseller image rotation
var banners = new Array(
	'images/logo_tecolote_research_wide.jpg',
	'images/logo_delta.gif',
	'images/logo_csc.gif',
	'images/logo_battelle.gif',	
	'images/logo_entereza.gif',
	'images/logo_esn.gif',
	'images/logo_pesystems.gif',
	'images/logo_rcf.gif',	
	'images/logo_mantech.gif',
	'images/logo_paradigm.gif');
	
var current = -1;

function rotate_banner()
{
	if (!document.images) return
	
	if (current >= banners.length-1)
	{
		current = -1;
	}
	
	current = current + 1;
	
	document.images['banner'].src = banners[current];		
	setTimeout('rotate_banner()',2500);
}