// JavaScript Document


if (document.getElementById) { window.onload = swap };
function swap() {
var numimages=3;
rndimg = new Array("/_images/home/fireservice1.jpg", "/_images/home/fireservice2.jpg", "/_images/home/womanathome.jpg"); 
x=(Math.floor(Math.random()*numimages));
randomimage=(rndimg[x]);
document.getElementById("hpcontent").style.backgroundImage = "url("+ randomimage +")"; 
}
