var images =['/images/random/random1.jpg', '/images/random/random2.jpg', '/images/random/random3.jpg'];

function set_bg_image(){	
	obj = document.getElementById('home_image');
	obj.style.backgroundImage = 'url(' + images[Math.floor((Math.random()*images.length))] + ')';
}