function cambiaFondo() {
	fondo = new Array(22);
	for (i=0; i<22 ; i++) {
		num = i+1;
		if ((i+1)<10) {
			num = '0'+(i+1);
		}
		fondo[i] = 'images/back_' + num + '.jpg';
	}
	index = Math.floor(Math.random() * fondo.length);
	document.getElementsByTagName('body')[0].style.backgroundImage = 'url('+fondo[index]+')';
}
