if (document.getElementById) { window.onload = swap };
function swap() {
var numimages=5;
rndimg = new Array(
	"/css/fba/images/homeImage_01.jpg",
	"/css/fba/images/homeImage_02.jpg",
	"/css/fba/images/homeImage_03.jpg", 
	"/css/fba/images/homeImage_04.jpg", 
	"/css/fba/images/homeImage_05.jpg"); 
x=(Math.floor(Math.random()*numimages));
randomimage=(rndimg[x]);
document.getElementById("homeImage").style.backgroundImage = "url("+ randomimage +")"; 
}
