    //<![CDATA[

    function load() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map"));
		
		//controles
		map.addControl(new GSmallMapControl());
		map.addControl(new GMapTypeControl());
        map.setCenter(new GLatLng(37.385435,-4.768066), 7);

 	function createMarker(point, texto) {
		var lineaidealIco = new GIcon();
		lineaidealIco.image = "/imagenes_web/lineaideal_ico_mapa.png";
		//lineaidealIco.shadow = "./imagenes_web/brocoli_ico_sombra.png";
		lineaidealIco.iconSize = new GSize(60, 64);
		lineaidealIco.shadowSize = new GSize(60, 64);
		lineaidealIco.iconAnchor = new GPoint(60, 64);
		lineaidealIco.infoWindowAnchor = new GPoint(60, 64);
		markerOptions = { icon:lineaidealIco };
  			var marker = new GMarker(point, markerOptions);
  			GEvent.addListener(marker, "click", function() {
				marker.openInfoWindowHtml(texto);
  			});
  		return marker;
	}
 	function createMarker2(point, texto) {
		var lineaidealIco = new GIcon();
		lineaidealIco.image = "/imagenes_web/lineaideal_ico_mapa2.png";
		lineaidealIco.iconSize = new GSize(60, 64);
		lineaidealIco.shadowSize = new GSize(60, 64);
		lineaidealIco.iconAnchor = new GPoint(0, 64);
		lineaidealIco.infoWindowAnchor = new GPoint(0, 64);
		markerOptions = { icon:lineaidealIco };
  			var marker = new GMarker(point, markerOptions);
  			GEvent.addListener(marker, "click", function() {
				marker.openInfoWindowHtml(texto);
  			});
  		return marker;
	}
		//Clínica Línea Ideal Málaga
		  var texto_larios = "<b style='font-size:13px;'>Cl&iacute;nicas L&iacute;nea Ideal</b><br><span style='font-size:12px'>c/ Walt Whitman 3 - 2ºA</span><br/><i>Edif Centro Comercial LARIOS</i><br><b style='font-size:12px; color:#666666'>29002 M&aacute;laga</b><br><b style='font-size:12px; color:#666666'>Tel: 952 369 811</b>";
		  var punto_larios = new GLatLng(36.715971,-4.433454);
 		  map.addOverlay(createMarker(punto_larios, texto_larios));

		//Clínica Línea Ideal Granada
		  var texto_puentezuelas = "<b style='font-size:13px;'>Cl&iacute;nicas L&iacute;nea Ideal</b><br><span style='font-size:12px'>c/Puentezuelas 3 - 1ºA</span><br/><i>(Esquina c/Recogidas)</i><br><b style='font-size:12px; color:#666666'>18002 Granada</b><br><b style='font-size:12px; color:#666666'>Tel: 958 258 826</b>";
		  var punto_puentezuelas = new GLatLng(37.173093,-3.600786);
 		  map.addOverlay(createMarker(punto_puentezuelas, texto_puentezuelas));
  
		//Clínica Línea Ideal Granada
		  var texto_spasenator = "<b style='font-size:13px;'>Spa Senator Hotel</b><br><span style='font-size:12px'>Paseo del Viol&oacute;n</span><br/><i>(Frente Palacio de Congresos)</i><br><b style='font-size:12px; color:#666666'>18006 Granada</b><br><b style='font-size:12px; color:#666666'>Tel: 958 136 208</b>";
		  var punto_spasenator = new GLatLng(37.16587833148648,-3.600318431854248);
 		  map.addOverlay(createMarker2(punto_spasenator, texto_spasenator));

}
    }
	
    //]]>