window.onload = function(){
	numero = parseInt(Math.random() * 4 + 1);
	elm = document.getElementById('headThreeColumnOne');
	img = 'url(images/vm_r4_c'+numero+'.jpg)';
	elm.style.backgroundImage = img;
}