window.onload = function (){
	var photos = ['img/bg-a.jpg', 'img/bg-b.jpg', 'img/bg-c.jpg'];
	var rand = Math.ceil(Math.random()*photos.length-1);
	document.getElementById('container').style.backgroundImage="url('"+photos[rand]+"')";
}
