function loadMapaGoogle() {
		//Inicializamos el mapa
		var map = new GMap2(document.getElementById("mapa"));
		map.addControl(new GSmallMapControl());
		map.setCenter(new GLatLng(43.266615,-2.935089), 14);

		// 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.266615,-2.935089);
		var marker_casa = new GMarker(posicion_casa,icon);
		map.addOverlay(marker_casa);
	}
		
