<!-- 
if (document.getElementById) { window.onload = swap };
function swap() {
var numimages=5;
rndimg = new Array("/images/banners/health/health_1.jpg","/images/banners/health/health_2.jpg","/images/banners/health/health_3.jpg","/images/banners/health/health_4.jpg","/images/banners/health/health_5.jpg"); 
x=(Math.floor(Math.random()*numimages));
randomimage=(rndimg[x]);
document.getElementById("main_img").style.backgroundImage = "url("+ randomimage +")"; 
}

//--> 