// Rotación de fondos para cabecera
var maxFondos = 24;
var aleatorio = parseInt(Math.random()*maxFondos)+1;
var cabecera = document.getElementById('cabecera');
cabecera.style.backgroundImage = 'url(img/bg'+aleatorio+'.jpg)';

