	function cambiar_fondo(fondo)
	{
		var element = document.getElementById('fondo-animado');
		switch(fondo)
		  {
				case '1':
					document.getElementById('fondo-animado').className = 'fondo_uno';
					break;
				case '2':
					document.getElementById('fondo-animado').className = 'fondo_dos';
					break;
				case '3':
					document.getElementById('fondo-animado').className = 'fondo_tres';
					break;
				case '4':
					document.getElementById('fondo-animado').className = 'fondo_cuatro';
					break;
				default:
					document.getElementById('fondo-animado').className = 'fondo_cero';
					break;
	  	}
	}

	function dejar_fondo()
	{
		if (document.getElementById('fondo-animado').className != 'fondo_cero')
			cambiar_fondo(5);
	}