$(document).ready( function() { 
	// DISPLAYS A RANDOM NUMBER 1 - 6
	var HArray = new Array("http://www.computerpartners.net/", "http://www.cullmancareers.com/", "http://www.villageprofile.com/alabama/cullman/");
	var IArray = new Array("images/logos/computerpartners.gif", "images/logos/caws.gif", "images/logos/hm_cover.gif");
//	var arrLen = HArray.length;
//	var randone = Math.floor(Math.random()*arrLen);
//	var randtwo = Math.floor(Math.random()*arrLen);
//	while (randone == randtwo) { randtwo = Math.floor(Math.random()*arrLen); }
//	var randthree = Math.floor(Math.random()*arrLen);
//	while ((randthree == randtwo) || (randthree == randone)) { randthree = Math.floor(Math.random()*(arrLen-1))+1; }
	$("#hone").attr("href", HArray[0]);
	$("#htwo").attr("href", HArray[1]);
	$("#hthree").attr("href", HArray[2]);
	$("#ione").attr("src", IArray[0]);
	$("#itwo").attr("src", IArray[1]);
	$("#ithree").attr("src", IArray[2]);
}); // end doc ready


