window.onload = function(){
	numero = parseInt(Math.random() * 13);
	elm = document.getElementById('cabecera');
	cero = numero >= 10 ? '' : '0';
	img = 'url(img/cabecera_' + cero + numero + '.jpg)';
	elm.style.backgroundImage = img;
}