var cust_list = new Array("arkansasstatepolice.png","ArkeSystems.png","auric.png","epa.png","fmsi.png","Gateway.png","GovernmentPuertoRico.png","InkANote.png","LogMeIn.png","ServiceCentral.png","usnavy2.png","Verizon.png","visibilitysoftware2.png","volvo2.png","wellpoint.png","zeewise.png","zerotoquota2.png");
var cust_count = cust_list.length;
var cust_interval;
var cust_cur = Math.floor(Math.random() * cust_count);
var cust_old = cust_cur;

function customerLoop() {
	for (var i=0;i<cust_count;i++)

	$("#mod_customers li").remove();
	for(var i=0; i < cust_count; i++) {
		$("#mod_customers ul").append('<li><img src="/site/customers/' + cust_list[i] + '" alt="Company Logo" /></li>'); 
	}
	$("#mod_customers li").hide();
	$("#mod_customers li:eq(" + cust_cur + ")").fadeIn(1000);
	cust_interval = setInterval(customerRotate, 5000);
}
function customerRotate() {
	cust_cur = (cust_old + 1) % cust_count;
	$("#mod_customers li:eq(" + cust_old + ")").fadeOut(1000, function() {
		$("#mod_customers li:eq(" + cust_cur + ")").fadeIn(1000);
		cust_old = cust_cur;																																	 
	});
}
function pageSetup() {
	$("#promoArea div").hide();
	$("#promoReports").fadeIn(1000);
	$("#promoASP dl.bullets").hide();
	$("#promoASP_security").show();
}
