<!-- 
if (document.getElementById) { window.onload = swap };
function swap() {
var numimages=4;
rndimg = new Array("/images/banners/asia/asia_1.jpg","/images/banners/asia/asia_2.jpg","/images/banners/asia/asia_3.jpg","/images/banners/asia/asia_5.jpg"); 
x=(Math.floor(Math.random()*numimages));
randomimage=(rndimg[x]);
document.getElementById("main_img").style.backgroundImage = "url("+ randomimage +")"; 
}

//--> 