<!-- 
if (document.getElementById) { window.onload = swap };
function swap() {
var numimages=4;
rndimg = new Array("/images/index_page/country/m_laptop.jpg","/images/home/filler_pic.jpg","/images/home/filler_pic_1.jpg","/images/home/filler_pic_2.jpg","/images/home/filler_pic_3.jpg","/images/home/filler_pic_4.jpg","/images/home/filler_pic_5.jpg"); 
x=(Math.floor(Math.random()*numimages));
randomimage=(rndimg[x]);
document.getElementById("main_img").style.backgroundImage = "url("+ randomimage +")"; 
}

//--> 
