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.178820,-2.234820), 13);

		// Configuramos el icono a mostrar
		var icon = new GIcon();
		icon.image = "/img/all/icono_flecha_02.png";
		icon.shadow = "/img/all/icono_flecha_sombra_02.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.178820,-2.234820);
		var marker_casa = new GMarker(posicion_casa,icon);
		GEvent.addListener(marker_casa, "click", function() {
		<!--marker_casa.openInfoWindowHtml('Irurena');--!>
		});
		map.addOverlay(marker_casa);
	}