
window.onload = function(){
	numero = parseInt(Math.random() * 2);
	elm = document.getElementById('contenidos_home');
	cero = numero >= 10 ? '' : '0';
	img = 'url(img/imgHome_' + cero + numero + '.jpg)';
	elm.style.backgroundImage = img;
	window.setTimeout('cambiaImagen()',30000);

}

function cambiaImagen(){
	numero = parseInt(Math.random() * 2);
	elm = document.getElementById('contenidos_home');
	cero = numero >= 10 ? '' : '0';
	img = 'url(img/imgHome_' + cero + numero + '.jpg)';
	elm.style.backgroundImage = img;
	window.setTimeout('cambiaImagen()',30000);
}
