function show_menu(DIV) {
              var elemento = document.getElementById('ayuntamientos');
              elemento.style.display = "none";
              if (DIV == 'ayuntamientos') {
                      elemento.style.display = "inline";
              }
	      var elemento = document.getElementById('empresas');
              elemento.style.display = "none";
              if (DIV == 'empresas') {
                      elemento.style.display = "inline";
              }
	      var elemento = document.getElementById('tienda');
              elemento.style.display = "none";
              if (DIV == 'tienda') {
                      elemento.style.display = "inline";
              }
	      var elemento = document.getElementById('utilidades');
              elemento.style.display = "none";
              if (DIV == 'utilidades') {
                      elemento.style.display = "inline";
              }
	      var elemento = document.getElementById('publico');
              elemento.style.display = "none";
              if (DIV == 'publico') {
                      elemento.style.display = "inline";
              }
	      var elemento = document.getElementById('servicios');
              elemento.style.display = "none";
              if (DIV == 'servicios') {
                      elemento.style.display = "inline";
              }
	     if (document.getElementById('ayuntamientos').style.display == "inline") {
			pepe = new Image();
			pepe.src = "img_new/fondo_ayuntamiento.png";
			document.getElementById('fondo_ayuntamiento_new').style.backgroundImage = "url('"+pepe.src+"')";
	     } else {
			document.getElementById('fondo_ayuntamiento_new').style.backgroundImage = "none";
	     }
	     if (document.getElementById('tienda').style.display == "inline") {
			pepe = new Image();
			pepe.src = "img_new/fondo_tienda.png";
			document.getElementById('fondo_tienda_new').style.backgroundImage = "url('"+pepe.src+"')";
	     } else {
			document.getElementById('fondo_tienda_new').style.backgroundImage = "none";
	     }
	     if (document.getElementById('utilidades').style.display == "inline") {
			pepe = new Image();
			pepe.src = "img_new/fondo_utilidades.png";
			document.getElementById('fondo_utilidades_new').style.backgroundImage = "url('"+pepe.src+"')";
	     } else {
			document.getElementById('fondo_utilidades_new').style.backgroundImage = "none";
	     }
	     if (document.getElementById('publico').style.display == "inline") {
			pepe = new Image();
			pepe.src = "img_new/fondo_publico.png";
			document.getElementById('fondo_publico_new').style.backgroundImage = "url('"+pepe.src+"')";
	     } else {
			document.getElementById('fondo_publico_new').style.backgroundImage = "none";
	     }
	     if (document.getElementById('empresas').style.display == "inline") {
			pepe = new Image();
			pepe.src = "img_new/fondo_empresa.png";
			document.getElementById('fondo_empresa_new').style.backgroundImage = "url('"+pepe.src+"')";
	     } else {
			document.getElementById('fondo_empresa_new').style.backgroundImage = "none";
	     }
	     if (document.getElementById('servicios').style.display == "inline") {
			pepe = new Image();
			pepe.src = "img_new/fondo_servicio.png";
			document.getElementById('fondo_servicio_new').style.backgroundImage = "url('"+pepe.src+"')";
	     } else {
			document.getElementById('fondo_servicio_new').style.backgroundImage = "none";
	     }
}
function saca() {
	var elemento = document.getElementById('ayuntamientos');
        elemento.style.display = "none";
	document.getElementById('fondo_ayuntamiento_new').style.backgroundImage = "none";
	var elemento = document.getElementById('tienda');
        elemento.style.display = "none";
	document.getElementById('fondo_tienda_new').style.backgroundImage = "none";
	var elemento = document.getElementById('utilidades');
        elemento.style.display = "none";
	document.getElementById('fondo_utilidades_new').style.backgroundImage = "none";
	var elemento = document.getElementById('publico');
        elemento.style.display = "none";
	document.getElementById('fondo_publico_new').style.backgroundImage = "none";
	var elemento = document.getElementById('servicios');
        elemento.style.display = "none";
	document.getElementById('fondo_servicio_new').style.backgroundImage = "none";
	var elemento = document.getElementById('empresas');
        elemento.style.display = "none";
	document.getElementById('fondo_empresa_new').style.backgroundImage = "none";

}
