function main_random_image()
{
	var BasePath='http://www.bhccu.org/';
	imgArray = new Array(48);
	imgArray[0] = "<img src='"+BasePath+"images/main/car_ride.jpg' width='585' height='208' border='0' alt=''>"
	imgArray[12] = "<img src='"+BasePath+"images/main/computer_woman.jpg' width='585' height='208' border='0' alt=''>"
	imgArray[24] = "<img src='"+BasePath+"images/main/family_home_sale.jpg' width='585' height='208' border='0' alt=''>"
	imgArray[36] = "<img src='"+BasePath+"images/main/shopper_female.jpg' width='585' height='208' border='0' alt=''>"
	imgArray[48] = "<img src='"+BasePath+"images/main/shopper_male.jpg' width='585' height='208' border='0' alt=''>"

	var imgTime = new Date();
	var seconds = imgTime.getSeconds();
	
	var i=0;
	while (i <= 48)
	{
		if ((seconds >= i) && (seconds <= i+11))
			document.write(imgArray[i]);
		i=i+12
	}
}

function other_random_image()
{
	var BasePath='http://www.bhccu.org/';
	imgArray = new Array(48);
	imgArray[0] = "<img src='"+BasePath+"images/other/car_ride.jpg' width='585' height='99' border='0' alt=''>"
	imgArray[12] = "<img src='"+BasePath+"images/other/computer_woman.jpg' width='585' height='99' border='0' alt=''>"
	imgArray[24] = "<img src='"+BasePath+"images/other/computer_woman.jpg' width='585' height='99' border='0' alt=''>"
	imgArray[36] = "<img src='"+BasePath+"images/other/shopper_female.jpg' width='585' height='99' border='0' alt=''>"
	imgArray[48] = "<img src='"+BasePath+"images/other/shopper_male.jpg' width='585' height='99' border='0' alt=''>"

	var imgTime = new Date();
	var seconds = imgTime.getSeconds();
	
	var i=0;
	while (i <= 48)
	{
		if ((seconds >= i) && (seconds <= i+11))
			document.write(imgArray[i]);
		i=i+12
	}
}
