function loadMapaGoogle() {
		//Inicializamos el mapa
		var map = new GMap2(document.getElementById("mapa"));
		map.addControl(new GMapTypeControl());
		map.addControl(new GLargeMapControl());
		map.setCenter(new GLatLng(43.268534,-2.937099), 16);

		// Configuramos el icono a mostrar
		var icon = new GIcon();
		icon.image = "/img/all/icono_flecha.png";
		icon.shadow = "/img/all/icono_flecha_sombra.png";
		icon.iconSize = new GSize(47, 42);
		icon.shadowSize = new GSize(47, 42);
		icon.iconAnchor = new GPoint(15, 38);
		icon.infoWindowAnchor = new GPoint(30, 0);

		//Anadimos el evento al hacer clic
		var posicion_casa = new GLatLng(43.2678,-2.9389);
		var marker_casa = new GMarker(posicion_casa,icon);
		GEvent.addListener(marker_casa, "click", function() {
			marker_casa.openInfoWindowHtml('<img src=\"/img/all/torre_iberdrola_google.jpg\" width=116px height=200px><br /><strong>Torre Iberdrola, A.I.E.</strong><br />Calle Iparraguirre nº 6, bajo<br />48009 Bilbao (Bizkaia)<br />Teléfono: 94 435 4349<br />Fax: 94 435 4364');
		});
		map.addOverlay(marker_casa);
	}
		
