// JavaScript Document

/*if (document.getElementById) { window.onload = swap(); };*/
function swap() {
var numimages=6;
rndimg = new Array("/images/home/photo1.jpg", "/images/home/photo2.jpg", "/images/home/photo3.jpg", "/images/home/photo4.jpg", "/images/home/photo5.jpg", "/images/home/photo6.jpg"); 
x=(Math.floor(Math.random()*numimages));
randomimage=(rndimg[x]);
/*alert('a');*/
/*alert(document.getElementById('random'));*/
document.getElementById('banner').style.backgroundImage = "url("+ randomimage +")"; 
}