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.165138,-2.578633), 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(131, 35);
		icon.shadowSize = new GSize(131, 35);
		icon.iconAnchor = new GPoint(60, 90);
		icon.infoWindowAnchor = new GPoint(30, 0);

		//Anadimos el evento al hacer clic
		var posicion_flecha = new GLatLng(43.165138,-2.578633);
		var marker_flecha = new GMarker(posicion_flecha,icon);
		GEvent.addListener(marker_flecha, "click", function() {
			marker_flecha.openInfoWindowHtml('<img src="/img/empresa/empresa.gif" width=175px height=100px><br /><strong>Melchor Gabilondo, S.A.</strong><br />Polígono Industrial Eitua, 6 <br />48240 Berriz (BIZKAIA)<br /><abbr title=\"Teléfono\">Tel.</abbr>: 94 622 50 90 <br />Fax: 94 622 52 78');
		});
		map.addOverlay(marker_flecha);
	}
	
 	
		

