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

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