function loadMapaGoogle() {
		//Inicializamos el mapa
		var map = new GMap2(document.getElementById("mapa_contacto"));
		map.addControl(new GLargeMapControl());
		map.addControl(new GMapTypeControl());
		map.setCenter(new GLatLng(43.303220032725754,-2.0004183053970337), 14);

		// Configuramos el icono a mostrar
		var icon = new GIcon();
		icon.image = "/web/img/all/icono_flecha.png";
		icon.shadow = "/web/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.303220032725754,-2.0004183053970337);
		var marker_casa = new GMarker(posicion_casa,icon);
		map.addOverlay(marker_casa);

	}