
 
    //<![CDATA[

    // Global Variables
    // set map variable
    var map = null;
    //set up array of locations
    var aLocations = new Array;

    /*************************** Configuration Options ***************************/
    /*PDMarker is used to display tooltips when the user hovers over the markers.
    * PDMarker is a LGPL library provided by Peter Jones. 
    * For details see http://wwww.pixeldevelopment.com/pdmarker.asp
    */
    var usePDMarker = false;

    // Create a base "tiny" red  icon that specifies the shadow, icon dimensions, etc.
    var iconsm = new GIcon();
    iconsm.image = "http://tailor.es/images/marker_tailor.png";
    iconsm.shadow = "http://tailor.es/images/shadow_tailor.png";
    iconsm.iconSize = new GSize(12, 20);
    iconsm.shadowSize = new GSize(20, 18);
    iconsm.iconAnchor = new GPoint(6, 20);
    iconsm.infoWindowAnchor = new GPoint(5, 1);

    // Create a base "large" red icon that specifies the shadow, icon dimensions, etc.
    var iconbig = new GIcon();
    iconbig.image = "http://tailor.es/images/marker_tailor.png";
    iconbig.shadow = "http://tailor.es/images/shadow_tailor.png";
    iconbig.iconSize = new GSize(20, 34);
    iconbig.shadowSize = new GSize(37, 34);
    iconbig.iconAnchor = new GPoint(6, 34);
    iconbig.infoWindowAnchor = new GPoint(5, 1);

    // Custom Icon
    var iconcustom = new GIcon(iconbig);
    iconcustom.shadow = '';

    function onLoad() {
      if (!GBrowserIsCompatible()) 
      {
         document.getElementById("MapBuilderMap").innerHTML = "Unfortunately your browser doesn't support Google Maps.<br /> To check browser compatibility visit the following <a href=\"http://local.google.com/support/bin/answer.py?answer=16532&topic=1499\">link</a>.";
         return;
      }

      map = new GMap2(document.getElementById("MapBuilderMap"));
      var MB = new MapBuilder(map);
      map.addControl(new GSmallZoomControl());
      map.addControl(new GMapTypeControl());
      // Center the map to the default location and set map type
      map.setCenter(new GLatLng(40.111688665595956, -3.75732421875), 5, map.getMapTypes()[0]);
      // Initialize variables
      var point = null;
      var footerHtml = null;
      var InfoHTML = null;
      var marker = null;
      /* Options used for PDMarker initialization:
      * label: tooltip text
      * opasity: tooltip opasity
      */
      var options = {};

      // Add locations
	
      point = new GLatLng(38.26259719389613, -.718134641647338);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"http://tailor.es/tiendas.php#alicante\" >M&aacute;s informaci&oacute;n</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">Arreglos de ropa en Alicante</div><div class=\"IWContent\">Arreglos de ropa en Alicante. Costureras y modistas profesionales. Servicios urgentes en arreglos de ropa. Arreglos de ropa de vestir y del hogar.<br><br><br></div>" + footerHtml + "</div>";
      iconbig.image = "http://tailor.es/images/marker_tailor.png";
      marker = createMarker(point, InfoHTML, iconbig, options, 0);
      map.addOverlay(marker);
      aLocations[0] = new Array(marker, "Arreglos de ropa en Alicante", InfoHTML, point);
	
      point = new GLatLng(38.41993973159041, -.4125022888183594);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"http://tailor.es/tiendas.php#alicante\" >M&aacute;s informaci&oacute;n</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">Arreglos de ropa en Alicante</div><div class=\"IWContent\">Arreglos de ropa en Alicante. Costureras y modistas profesionales. Servicios urgentes en arreglos de ropa. Arreglos de ropa de vestir y del hogar.<br><br></div>" + footerHtml + "</div>";
      iconbig.image = "http://tailor.es/images/marker_tailor.png";
      marker = createMarker(point, InfoHTML, iconbig, options, 1);
      map.addOverlay(marker);
      aLocations[1] = new Array(marker, "Arreglos de ropa en Alicante", InfoHTML, point);
	
      point = new GLatLng(41.43819023474469, 2.1965253353118896);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"http://tailor.es/tiendas.php#barcelona\" >M&aacute;s informaci&oacute;n</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">Arreglos de ropa en Barcelona</div><div class=\"IWContent\"><span style=\"color: black; text-align: left; direction: ltr;\" id=\"preaddr\">Centro Comercial La Maquinista</span><br>Arreglos de ropa en Barcelona. Costureras y modistas profesionales. Servicios urgentes en arreglos de ropa. Arreglos de ropa de vestir y del hogar.<br><br><br></div>" + footerHtml + "</div>";
      iconbig.image = "http://tailor.es/images/marker_tailor.png";
      marker = createMarker(point, InfoHTML, iconbig, options, 2);
      map.addOverlay(marker);
      aLocations[2] = new Array(marker, "Arreglos de ropa en Barcelona", InfoHTML, point);
	
      point = new GLatLng(41.2792900300028, 1.9731402397155762);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"http://tailor.es/tiendas.php#barcelona\" >M&aacute;s informaci&oacute;n</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">Arreglos de ropa en Barcelona</div><div class=\"IWContent\">Centro Comercial l'&Agrave;nec Blau<br>Arreglos de ropa en Barcelona. Costureras y modistas profesionales. Servicios urgentes en arreglos de ropa. Arreglos de ropa de vestir y del hogar.<br><br><br></div>" + footerHtml + "</div>";
      iconbig.image = "http://tailor.es/images/marker_tailor.png";
      marker = createMarker(point, InfoHTML, iconbig, options, 3);
      map.addOverlay(marker);
      aLocations[3] = new Array(marker, "Arreglos de ropa en Barcelona", InfoHTML, point);
	
      point = new GLatLng(41.355462685352784, 2.074989080429077);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"http://tailor.es/tiendas.php#barcelona\" >M&aacute;s informaci&oacute;n</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">Arreglos de ropa en Barcelona</div><div class=\"IWContent\"><span class=\"adr\" id=\"sxaddr\" dir=\"ltr\"><span class=\"extended-address\">Centro Comercial Llobregat Centre</span></span><br>Arreglos de ropa en Barcelona. Costureras y modistas profesionales. Servicios urgentes en arreglos de ropa. Arreglos de ropa de vestir y del hogar.<br><br><br></div>" + footerHtml + "</div>";
      iconbig.image = "http://tailor.es/images/marker_tailor.png";
      marker = createMarker(point, InfoHTML, iconbig, options, 4);
      map.addOverlay(marker);
      aLocations[4] = new Array(marker, "Arreglos de ropa en Barcelona", InfoHTML, point);
	
      point = new GLatLng(41.60922568579687, 2.28715181350708);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"http://tailor.es/tiendas.php#barcelona\" >M&aacute;s informaci&oacute;n</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">Arreglos de ropa en Barcelona</div><div class=\"IWContent\">Arreglos de ropa en Barcelona. Costureras y modistas profesionales. Servicios urgentes en arreglos de ropa. Arreglos de ropa de vestir y del hogar.<br><br><br></div>" + footerHtml + "</div>";
      iconbig.image = "http://tailor.es/images/marker_tailor.png";
      marker = createMarker(point, InfoHTML, iconbig, options, 5);
      map.addOverlay(marker);
      aLocations[5] = new Array(marker, "Arreglos de ropa en Barcelona", InfoHTML, point);
	
      point = new GLatLng(41.52390503911981, 2.399386167526245);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"http://tailor.es/tiendas.php#barcelona\" >M&aacute;s informaci&oacute;n</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">Arreglos de ropa en Barcelona</div><div class=\"IWContent\"><span class=\"adr\" id=\"sxaddr\" dir=\"ltr\"><span class=\"extended-address\">Centro Comercial Carrefour Cabrera</span></span><br>Arreglos de ropa en Barcelona. Costureras y modistas profesionales. Servicios urgentes en arreglos de ropa. Arreglos de ropa de vestir y del hogar.<br><br><br></div>" + footerHtml + "</div>";
      iconbig.image = "http://tailor.es/images/marker_tailor.png";
      marker = createMarker(point, InfoHTML, iconbig, options, 6);
      map.addOverlay(marker);
      aLocations[6] = new Array(marker, "Arreglos de ropa en Barcelona", InfoHTML, point);
	
      //point = new GLatLng(41.721850311468295, 1.843879222869873);
      //footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"http://tailor.es/tiendas.php#barcelona\" >M&aacute;s informaci&oacute;n</a></div></div>";

      // Define Marker
      //InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">Arreglos de ropa en Barcelona</div><div class=\"IWContent\">Centro Comercial Carrefour Manresa<br>Arreglos de ropa en Barcelona. Costureras y modistas profesionales. Servicios urgentes en arreglos de ropa. Arreglos de ropa de vestir y del hogar.<br><br><br></div>" + footerHtml + "</div>";
      //iconbig.image = "http://tailor.es/images/marker_tailor.png";
      //marker = createMarker(point, InfoHTML, iconbig, options, 7);
      //map.addOverlay(marker);
      //aLocations[7] = new Array(marker, "Arreglos de ropa en Barcelona", InfoHTML, point);
	
     point = new GLatLng(41.53342279980274, 2.02822208404541);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"http://tailor.es/tiendas.php#barcelona\" >M&aacute;s informaci&oacute;n</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">Arreglos de ropa en Barcelona</div><div class=\"IWContent\"><span class=\"adr\" id=\"sxaddr\" dir=\"ltr\"><span class=\"extended-address\"></span></span><span class=\"adr\" id=\"sxaddr\" dir=\"ltr\"><span class=\"extended-address\">Centro Comercial Carrefour </span></span><span class=\"adr\" id=\"sxaddr\" dir=\"ltr\"><span class=\"locality\">Terrassa</span></span>? <br>Arreglos de ropa en <span class=\"adr\" id=\"sxaddr\" dir=\"ltr\"><span class=\"extended-address\">Barcelona</span></span>. Costureras y modistas profesionales. Servicios urgentes en arreglos de ropa. Arreglos de ropa de vestir y del hogar.<br><br><br></div>" + footerHtml + "</div>";
      iconbig.image = "http://tailor.es/images/marker_tailor.png";
      marker = createMarker(point, InfoHTML, iconbig, options, 8);
      map.addOverlay(marker);
      aLocations[8] = new Array(marker, "Arreglos de ropa en Barcelona", InfoHTML, point);
	
      point = new GLatLng(41.56283466918015, 2.0128369331359863);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"http://tailor.es/tiendas.php#barcelona\" >M&aacute;s informaci&oacute;n</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">Arreglos de ropa en Barcelona</div><div class=\"IWContent\">Arreglos de ropa en Barcelona. Costureras y modistas profesionales. Servicios urgentes en arreglos de ropa. Arreglos de ropa de vestir y del hogar.<br><br><br></div>" + footerHtml + "</div>";
      iconbig.image = "http://tailor.es/images/marker_tailor.png";
      marker = createMarker(point, InfoHTML, iconbig, options, 9);
      map.addOverlay(marker);
      aLocations[9] = new Array(marker, "Arreglos de ropa en Barcelona", InfoHTML, point);
	
      point = new GLatLng(41.578711354359925, 2.0456349849700928);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"http://tailor.es/tiendas.php#barcelona\" >M&aacute;s informaci&oacute;n</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">Arreglos de ropa en Barcelona</div><div class=\"IWContent\"><span style=\"color: black; text-align: left; direction: ltr;\" id=\"preaddr\">Centro Comercial Eroski Tarrassa</span><br>Arreglos de ropa en Barcelona. Costureras y modistas profesionales. Servicios urgentes en arreglos de ropa. Arreglos de ropa de vestir y del hogar.<br><br><br></div>" + footerHtml + "</div>";
      iconbig.image = "http://tailor.es/images/marker_tailor.png";
      marker = createMarker(point, InfoHTML, iconbig, options, 10);
      map.addOverlay(marker);
      aLocations[10] = new Array(marker, "Arreglos de ropa en Barcelona", InfoHTML, point);
	
      point = new GLatLng(41.53718935798951, 2.442934513092041);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"http://tailor.es/tiendas.php#barcelona\" >M&aacute;s informaci&oacute;n</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">Arreglos de ropa en Barcelona</div><div class=\"IWContent\">Arreglos de ropa en Barcelona. Costureras y modistas profesionales. Servicios urgentes en arreglos de ropa. Arreglos de ropa de vestir y del hogar.<br><br><br></div>" + footerHtml + "</div>";
      iconbig.image = "http://tailor.es/images/marker_tailor.png";
      marker = createMarker(point, InfoHTML, iconbig, options, 11);
      map.addOverlay(marker);
      aLocations[11] = new Array(marker, "Arreglos de ropa en Barcelona", InfoHTML, point);
	
      point = new GLatLng(41.38209765389779, 2.1757757663726807);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"http://tailor.es/tiendas.php#barcelona\" >M&aacute;s informaci&oacute;n</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">Arreglos de ropa en Barcelona</div><div class=\"IWContent\"><span style=\"color: black; text-align: left; direction: ltr;\" id=\"preaddr\"></span>Arreglos de ropa en Barcelona. Costureras y modistas profesionales. Servicios urgentes en arreglos de ropa. Arreglos de ropa de vestir y del hogar.<br><br></div>" + footerHtml + "</div>";
      iconbig.image = "http://tailor.es/images/marker_tailor.png";
      marker = createMarker(point, InfoHTML, iconbig, options, 12);
      map.addOverlay(marker);
      aLocations[12] = new Array(marker, "Arreglos de ropa en Barcelona", InfoHTML, point);
	
     /* point = new GLatLng(41.23870566889563, 1.808398962020874);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"http://tailor.es/tiendas.php#barcelona\" >M&aacute;s informaci&oacute;n</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">Arreglos de ropa en Barcelona</div><div class=\"IWContent\">Mercat Municipal de Sitges<br>Arreglos de ropa en Barcelona. Costureras y modistas profesionales. Servicios urgentes en arreglos de ropa. Arreglos de ropa de vestir y del hogar.<br><br><br></div>" + footerHtml + "</div>";
      iconbig.image = "http://tailor.es/images/marker_tailor.png";
      marker = createMarker(point, InfoHTML, iconbig, options, 13);
      map.addOverlay(marker);
      aLocations[13] = new Array(marker, "Arreglos de ropa en Barcelona", InfoHTML, point);*/
	
      point = new GLatLng(41.4416406276437, 2.2290337085723877);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"http://tailor.es/tiendas.php#barcelona\" >M&aacute;s informaci&oacute;n</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">Arreglos de ropa en Barcelona</div><div class=\"IWContent\">Centro Comercial M&agrave;gic Badalona<br>Arreglos de ropa en Barcelona. Costureras y modistas profesionales. Servicios urgentes en arreglos de ropa. Arreglos de ropa de vestir y del hogar.<br><br></div>" + footerHtml + "</div>";
      iconbig.image = "http://tailor.es/images/marker_tailor.png";
      marker = createMarker(point, InfoHTML, iconbig, options, 14);
      map.addOverlay(marker);
      aLocations[14] = new Array(marker, "Arreglos de ropa en Barcelona", InfoHTML, point);
	
      point = new GLatLng(41.3901552398772, 2.1348774433135986);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"http://tailor.es/tiendas.php#barcelona\" >M&aacute;s informaci&oacute;n</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">Arreglos de ropa en Barcelona</div><div class=\"IWContent\"><span lkgal=\"undefined\" jstcache=\"50\" jsvalues=\"$title:m.title;$laddr:m.laddr;$addrurl:m.addressUrl;lkgal:m.lkgaddresslines;$features:features;$lkgal:m.lkgaddresslines\"><span dir=\"ltr\" jstcache=\"67\" jsdisplay=\"$title||!$laddr||!$addrurl\" jsvalues=\".innerHTML:$addrline;dir:bidiDir($addrline,true)\">Centro Comercial L'Illa</span></span><br>Arreglos de ropa en Barcelona. Costureras y modistas profesionales. Servicios urgentes en arreglos de ropa. Arreglos de ropa de vestir y del hogar.<br><br><br></div>" + footerHtml + "</div>";
      iconbig.image = "http://tailor.es/images/marker_tailor.png";
      marker = createMarker(point, InfoHTML, iconbig, options, 15);
      map.addOverlay(marker);
      aLocations[15] = new Array(marker, "Arreglos de ropa en Barcelona", InfoHTML, point);
	
      point = new GLatLng(41.51685215811001, 2.140016555786133);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"http://tailor.es/tiendas.php#barcelona\" >M&aacute;s informaci&oacute;n</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">Arreglos de ropa en Barcelona</div><div class=\"IWContent\"><span style=\"color: black; text-align: left; direction: ltr;\" id=\"preaddr\">Centro Comercial Baricentro</span><br>Arreglos de ropa en Barcelona. Costureras y modistas profesionales. Servicios urgentes en arreglos de ropa. Arreglos de ropa de vestir y del hogar.<br><br><br></div>" + footerHtml + "</div>";
      iconbig.image = "http://tailor.es/images/marker_tailor.png";
      marker = createMarker(point, InfoHTML, iconbig, options, 16);
      map.addOverlay(marker);
      aLocations[16] = new Array(marker, "Arreglos de ropa en Barcelona", InfoHTML, point);
	
      point = new GLatLng(41.40306461433136, 2.1916651725769043);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"http://tailor.es/tiendas.php#barcelona\" >M&aacute;s informaci&oacute;n</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">Arreglos de ropa en Barcelona</div><div class=\"IWContent\"><span lkgal=\"undefined\" jstcache=\"50\" jsvalues=\"$title:m.title;$laddr:m.laddr;$addrurl:m.addressUrl;lkgal:m.lkgaddresslines;$features:features;$lkgal:m.lkgaddresslines\"><span dir=\"ltr\" jstcache=\"67\" jsdisplay=\"$title||!$laddr||!$addrurl\" jsvalues=\".innerHTML:$addrline;dir:bidiDir($addrline,true)\">Centro Comercial Diagonal Mar</span></span><br>Arreglos de ropa en Barcelona. Costureras y modistas profesionales. Servicios urgentes en arreglos de ropa. Arreglos de ropa de vestir y del hogar.<br><br><br></div>" + footerHtml + "</div>";
      iconbig.image = "http://tailor.es/images/marker_tailor.png";
      marker = createMarker(point, InfoHTML, iconbig, options, 17);
      map.addOverlay(marker);
      aLocations[17] = new Array(marker, "Arreglos de ropa en Barcelona", InfoHTML, point);
	
      point = new GLatLng(41.45741840818667, 2.090846300125122);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"http://tailor.es/tiendas.php#barcelona\" >M&aacute;s informaci&oacute;n</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">Arreglos de ropa en Barcelona</div><div class=\"IWContent\"><span lkgal=\"undefined\" jstcache=\"50\" jsvalues=\"$title:m.title;$laddr:m.laddr;$addrurl:m.addressUrl;lkgal:m.lkgaddresslines;$features:features;$lkgal:m.lkgaddresslines\"><span dir=\"ltr\" jstcache=\"67\" jsdisplay=\"$title||!$laddr||!$addrurl\" jsvalues=\".innerHTML:$addrline;dir:bidiDir($addrline,true)\">Centro Comercial Eroski</span></span><br>Arreglos de ropa en Barcelona. Costureras y modistas profesionales. Servicios urgentes en arreglos de ropa. Arreglos de ropa de vestir y del hogar.<br><br><br></div>" + footerHtml + "</div>";
      iconbig.image = "http://tailor.es/images/marker_tailor.png";
      marker = createMarker(point, InfoHTML, iconbig, options, 18);
      map.addOverlay(marker);
      aLocations[18] = new Array(marker, "Arreglos de ropa en Barcelona", InfoHTML, point);
	
      point = new GLatLng(41.403201420653424, 2.1915900707244873);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"http://tailor.es/tiendas.php#barcelona\" >M&aacute;s informaci&oacute;n</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">Arreglos de ropa en Barcelona</div><div class=\"IWContent\">Centro Comercial Gl&ograve;ries<br>Arreglos de ropa en Barcelona. Costureras y modistas profesionales. Servicios urgentes en arreglos de ropa. Arreglos de ropa de vestir y del hogar.<br><br><br></div>" + footerHtml + "</div>";
      iconbig.image = "http://tailor.es/images/marker_tailor.png";
      marker = createMarker(point, InfoHTML, iconbig, options, 19);
      map.addOverlay(marker);
      aLocations[19] = new Array(marker, "Arreglos de ropa en Barcelona", InfoHTML, point);
	
      point = new GLatLng(41.35901410763179, 2.1279358863830566);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"http://tailor.es/tiendas.php#barcelona\" >M&aacute;s informaci&oacute;n</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">Arreglos de ropa en Barcelona</div><div class=\"IWContent\"><span style=\"color: black; text-align: left; direction: ltr;\" id=\"preaddr\">Centro Comercial Gran Via 2</span><br>Arreglos de ropa en Barcelona. Costureras y modistas profesionales. Servicios urgentes en arreglos de ropa. Arreglos de ropa de vestir y del hogar.<br><br><br></div>" + footerHtml + "</div>";
      iconbig.image = "http://tailor.es/images/marker_tailor.png";
      marker = createMarker(point, InfoHTML, iconbig, options, 20);
      map.addOverlay(marker);
      aLocations[20] = new Array(marker, "Arreglos de ropa en Barcelona", InfoHTML, point);
	
      point = new GLatLng(43.29780746571787, -2.984161376953125);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"http://tailor.es/tiendas.php#bilbao\" >M&aacute;s informaci&oacute;n</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">Arreglos de ropa en Bilbao</div><div class=\"IWContent\">Centro Comercial Los Fueros Boulevard<br>Arreglos de ropa en Barakaldo. Costureras y modistas profesionales. Servicios urgentes en arreglos de ropa. Arreglos de ropa de vestir y del hogar.<br><br></div>" + footerHtml + "</div>";
      iconbig.image = "http://tailor.es/images/marker_tailor.png";
      marker = createMarker(point, InfoHTML, iconbig, options, 21);
      map.addOverlay(marker);
      aLocations[21] = new Array(marker, "Arreglos de ropa en Bilbao", InfoHTML, point);
	
      point = new GLatLng(41.96643869110633, 2.7819550037384033);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"http://tailor.es/tiendas.php#girona\" >M&aacute;s informaci&oacute;n</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">Arreglos de ropa en Girona</div><div class=\"IWContent\"><span style=\"color: black; text-align: left; direction: ltr;\" id=\"preaddr\">Centro Comercial Espai Giron&egrave;s</span><br>Arreglos de ropa en Girona. Costureras y modistas profesionales. Servicios urgentes en arreglos de ropa. Arreglos de ropa de vestir y del hogar.<br><br></div>" + footerHtml + "</div>";
      iconbig.image = "http://tailor.es/images/marker_tailor.png";
      marker = createMarker(point, InfoHTML, iconbig, options, 23);
      map.addOverlay(marker);
      aLocations[23] = new Array(marker, "Arreglos de ropa en Girona", InfoHTML, point);
	
      point = new GLatLng(27.840271463982194, -15.44846177101135);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"http://tailor.es/tiendas.php#palmas\" >M&aacute;s informaci&oacute;n</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">Arreglos de ropa en Las Palmas</div><div class=\"IWContent\"><span style=\"color: black; text-align: left; direction: ltr;\" id=\"preaddr\">Centro Comercial Atl&aacute;ntico</span><br>Arreglos de ropa en Las Palmas. Costureras y modistas profesionales. Servicios urgentes en arreglos de ropa. Arreglos de ropa de vestir y del hogar.<br><br></div>" + footerHtml + "</div>";
      iconbig.image = "http://tailor.es/images/marker_tailor.png";
      marker = createMarker(point, InfoHTML, iconbig, options, 24);
      map.addOverlay(marker);
      aLocations[24] = new Array(marker, "Arreglos de ropa en Las Palmas", InfoHTML, point);
	
      point = new GLatLng(40.47884720816473, -3.709012269973755);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"http://tailor.es/tiendas.php#madrid\" >M&aacute;s informaci&oacute;n</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">Arreglos de ropa en Madrid</div><div class=\"IWContent\"><span style=\"color: black; text-align: left; direction: ltr;\" id=\"preaddr\">Centro Comercial La Vaguada</span><br>Arreglos de ropa en Madrid. Costureras y modistas profesionales. Servicios urgentes en arreglos de ropa. Arreglos de ropa de vestir y del hogar.<br><br></div>" + footerHtml + "</div>";
      iconbig.image = "http://tailor.es/images/marker_tailor.png";
      marker = createMarker(point, InfoHTML, iconbig, options, 25);
      map.addOverlay(marker);
      aLocations[25] = new Array(marker, "Arreglos de ropa en Madrid", InfoHTML, point);
	
      point = new GLatLng(40.381483152852795, -3.654606342315674);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"http://tailor.es/tiendas.php#madrid\" >M&aacute;s informaci&oacute;n</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">Arreglos de ropa en Madrid</div><div class=\"IWContent\"><span style=\"color: black; text-align: left; direction: ltr;\" id=\"preaddr\">Centro Comercial Madrid Sud</span><br>description: Arreglos de ropa en Madrid. Costureras y modistas profesionales. Servicios urgentes en arreglos de ropa. Arreglos de ropa de vestir y del hogar.<br><br></div>" + footerHtml + "</div>";
      iconbig.image = "http://tailor.es/images/marker_tailor.png";
      marker = createMarker(point, InfoHTML, iconbig, options, 27);
      map.addOverlay(marker);
      aLocations[27] = new Array(marker, "Arreglos de ropa en Madrid", InfoHTML, point);
	
      point = new GLatLng(40.29649109163779, -3.834303617477417);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"http://tailor.es/tiendas.php#madrid\" >M&aacute;s informaci&oacute;n</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">Arreglos de ropa en Madrid</div><div class=\"IWContent\"><span style=\"color: black; text-align: left; direction: ltr;\" id=\"preaddr\">Centro Comercial Loranca</span><br>Arreglos de ropa en Madrid. Costureras y modistas profesionales. Servicios urgentes en arreglos de ropa. Arreglos de ropa de vestir y del hogar.<span style=\"color: black; text-align: left; direction: ltr;\" id=\"preaddr\"></span><br></div>" + footerHtml + "</div>";
      iconbig.image = "http://tailor.es/images/marker_tailor.png";
      marker = createMarker(point, InfoHTML, iconbig, options, 28);
      map.addOverlay(marker);
      aLocations[28] = new Array(marker, "Arreglos de ropa en Madrid", InfoHTML, point);
	
       /*point = new GLatLng(40.36303491936393, -3.740190267562866);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"http://tailor.es/tiendas.php#madrid\" >M&aacute;s informaci&oacute;n</a></div></div>";

      // Define Marker
     InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">Arreglos de ropa en Madrid</div><div class=\"IWContent\"><span style=\"color: black; text-align: left; direction: ltr;\" id=\"preaddr\">Centro Comercial Islazul</span><br>Arreglos de ropa en Madrid. Costureras y modistas profesionales. Servicios urgentes en arreglos de ropa. Arreglos de ropa de vestir y del hogar.<br><br></div>" + footerHtml + "</div>";
      iconbig.image = "http://tailor.es/images/marker_tailor.png";
      marker = createMarker(point, InfoHTML, iconbig, options, 29);
      map.addOverlay(marker);
      aLocations[29] = new Array(marker, "Arreglos de ropa en Madrid", InfoHTML, point);*/
	
      point = new GLatLng(40.29855316821803, -3.7455224990844727);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"http://tailor.es/tiendas.php#madrid\" >M&aacute;s informaci&oacute;n</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">Arreglos de ropa en Madrid</div><div class=\"IWContent\"><span style=\"color: black; text-align: left; direction: ltr;\" id=\"preaddr\">Centro Comercial Getafe 3</span><br>Arreglos de ropa en Madrid. Costureras y modistas profesionales. Servicios urgentes en arreglos de ropa. Arreglos de ropa de vestir y del hogar.<br><br></div>" + footerHtml + "</div>";
      iconbig.image = "http://tailor.es/images/marker_tailor.png";
      marker = createMarker(point, InfoHTML, iconbig, options, 29);
      map.addOverlay(marker);
      aLocations[29] = new Array(marker, "Arreglos de ropa en Madrid", InfoHTML, point);
	
      point = new GLatLng(40.45214778455556, -3.6929619312286377);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"http://tailor.es/tiendas.php#madrid\" >M&aacute;s informaci&oacute;n</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">Arreglos de ropa en Madrid</div><div class=\"IWContent\">Centro Comercial Moda Shopping<br>Arreglos de ropa en Madrid. Costureras y modistas profesionales. Servicios urgentes en arreglos de ropa. Arreglos de ropa de vestir y del hogar.<br></div>" + footerHtml + "</div>";
      iconbig.image = "http://tailor.es/images/marker_tailor.png";
      marker = createMarker(point, InfoHTML, iconbig, options, 30);
      map.addOverlay(marker);
      aLocations[30] = new Array(marker, "Arreglos de ropa en Madrid", InfoHTML, point);
	
      point = new GLatLng(40.24054554627376, -3.7473785877227783);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"http://tailor.es/tiendas.php#madrid\" >M&aacute;s informaci&oacute;n</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">Arreglos de ropa en Madrid</div><div class=\"IWContent\">Centro Comercial El Ferial<br>Arreglos de ropa en Madrid. Costureras y modistas profesionales. Servicios urgentes en arreglos de ropa. Arreglos de ropa de vestir y del hogar.<br><br></div>" + footerHtml + "</div>";
      iconbig.image = "http://tailor.es/images/marker_tailor.png";
      marker = createMarker(point, InfoHTML, iconbig, options, 31);
      map.addOverlay(marker);
      aLocations[31] = new Array(marker, "Arreglos de ropa en Madrid", InfoHTML, point);
	
      point = new GLatLng(36.6142014392154, -4.511904716491699);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"http://tailor.es/tiendas.php#malaga\" >M&aacute;s informaci&oacute;n</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">Arreglos de ropa en M&aacute;laga</div><div class=\"IWContent\"><span style=\"color: black; text-align: left; direction: ltr;\" id=\"preaddr\">Centro Comercial Costasol</span><br>Arreglos de ropa en M&aacute;laga. Costureras y modistas profesionales. Servicios urgentes en arreglos de ropa. Arreglos de ropa de vestir y del hogar.<br><br></div>" + footerHtml + "</div>";
      iconbig.image = "http://tailor.es/images/marker_tailor.png";
      marker = createMarker(point, InfoHTML, iconbig, options, 32);
      map.addOverlay(marker);
      aLocations[32] = new Array(marker, "Arreglos de ropa en M&aacute;laga", InfoHTML, point);
	
	point = new GLatLng(39.550375, 2.623737);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"http://tailor.es/tiendas.php#mallorca\" >M&aacute;s informaci&oacute;n</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">Arreglos de ropa en Mallorca</div><div class=\"IWContent\"><span style=\"color: black; text-align: left; direction: ltr;\" id=\"preaddr\">Centro Comercial Porto Pi</span><br>Arreglos de ropa en Mallorca. Costureras y modistas profesionales. Servicios urgentes en arreglos de ropa. Arreglos de ropa de vestir y del hogar.<br><br></div>" + footerHtml + "</div>";
      iconbig.image = "http://tailor.es/images/marker_tailor.png";
      marker = createMarker(point, InfoHTML, iconbig, options, 33);
      map.addOverlay(marker);
      aLocations[33] = new Array(marker, "Arreglos de ropa en M&aacute;laga", InfoHTML, point);
	
      point = new GLatLng(38.74352362585221, -9.144895076751709);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"http://tailor.es/tiendas.php#lisboa\" >M&aacute;s informaci&oacute;n</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">Arreglos de ropa en Lisboa</div><div class=\"IWContent\">Centro Comercial Campo Pequeno<br>Arreglos de ropa en Lisboa. Costureras y modistas profesionales. Servicios urgentes en arreglos de ropa. Arreglos de ropa de vestir y del hogar.<br><br></div>" + footerHtml + "</div>";
      iconbig.image = "http://tailor.es/images/marker_tailor.png";
      marker = createMarker(point, InfoHTML, iconbig, options, 34);
      map.addOverlay(marker);
      aLocations[34] = new Array(marker, "Arreglos de ropa en Lisboa", InfoHTML, point);
	
      point = new GLatLng(-33.5640873571264, -70.58494806289673);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"http://tailor.es/tiendas.php#chile\">M&aacute;s informaci&oacute;n</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">Arreglos de ropa en Santiago de Chile</div><div class=\"IWContent\">Centro Comercial Mall Florida<br>Arreglos de ropa en Santiago de Chile. Costureras y modistas profesionales. Servicios urgentes en arreglos de ropa. Arreglos de ropa de vestir y del hogar.<br><br></div>" + footerHtml + "</div>";
      iconbig.image = "http://tailor.es/images/marker_tailor.png";
      marker = createMarker(point, InfoHTML, iconbig, options, 35);
      map.addOverlay(marker);
      aLocations[35] = new Array(marker, "Arreglos de ropa en Santiago de Chile", InfoHTML, point);
	
      point = new GLatLng(39.45924147250339, -.3430652618408203);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"http://tailor.es/tiendas.php#valencia\">M&aacute;s informaci&oacute;n</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">Arreglos de ropa en Valencia</div><div class=\"IWContent\"><span style=\"color: black; text-align: left; direction: ltr;\" id=\"preaddr\">Centro Comercial Aqua</span><br>Arreglos de ropa en Valencia. Costureras y modistas profesionales. Servicios urgentes en arreglos de ropa. Arreglos de ropa de vestir y del hogar.<br><br></div>" + footerHtml + "</div>";
      iconbig.image = "http://tailor.es/images/marker_tailor.png";
      marker = createMarker(point, InfoHTML, iconbig, options, 36);
      map.addOverlay(marker);
      aLocations[36] = new Array(marker, "Arreglos de ropa en Valencia", InfoHTML, point);
	
      point = new GLatLng(41.685484450860194, -.865484476089477);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"http://tailor.es/tiendas.php#zaragoza\">M&aacute;s informaci&oacute;n</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">Arreglos de ropa en Zaragoza</div><div class=\"IWContent\"><span lkgal=\"undefined\" jstcache=\"50\" jsvalues=\"$title:m.title;$laddr:m.laddr;$addrurl:m.addressUrl;lkgal:m.lkgaddresslines;$features:features;$lkgal:m.lkgaddresslines\"><span dir=\"ltr\" jstcache=\"67\" jsdisplay=\"$title||!$laddr||!$addrurl\" jsvalues=\".innerHTML:$addrline;dir:bidiDir($addrline,true)\">Centro Comercial Augusta</span></span><br>Arreglos de ropa en Zaragoza. Costureras y modistas profesionales. Servicios urgentes en arreglos de ropa. Arreglos de ropa de vestir y del hogar.<br><br><br></div>" + footerHtml + "</div>";
      iconbig.image = "http://tailor.es/images/marker_tailor.png";
      marker = createMarker(point, InfoHTML, iconbig, options, 37);
      map.addOverlay(marker);
      aLocations[37] = new Array(marker, "Arreglos de ropa en Zaragoza", InfoHTML, point);
	
      point = new GLatLng(41.66907303169245, -.890160799026489);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"http://tailor.es/tiendas.php#zaragoza\">M&aacute;s informaci&oacute;n</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">Arreglos de ropa en Zaragoza</div><div class=\"IWContent\"><span style=\"color: black; text-align: left; direction: ltr;\" id=\"preaddr\">Centro Comercial Grancasa</span><br>Arreglos de ropa en Zaragoza. Costureras y modistas profesionales. Servicios urgentes en arreglos de ropa. Arreglos de ropa de vestir y del hogar.<br><br><br></div>" + footerHtml + "</div>";
      iconbig.image = "http://tailor.es/images/marker_tailor.png";
      marker = createMarker(point, InfoHTML, iconbig, options, 38);
      map.addOverlay(marker);
      aLocations[38] = new Array(marker, "Arreglos de ropa en Zaragoza", InfoHTML, point);
      // And finnaly create sidebar
      //createSideBar();
	  
	  
      point = new GLatLng(41.393922, 2.165036);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"http://tailor.es/tiendas.php#barcelona\" >M&aacute;s informaci&oacute;n</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">Arreglos de ropa en Barcelona - Centro Comercial Bulevard Rosa</div><div class=\"IWContent\">Arreglos de ropa en Barcelona - Centro Comercial Bulevard Rosa. Costureras y modistas profesionales. Servicios urgentes en arreglos de ropa. Arreglos de ropa de vestir y del hogar.<br><br><br></div>" + footerHtml + "</div>";
      iconbig.image = "http://tailor.es/images/marker_tailor.png";
      marker = createMarker(point, InfoHTML, iconbig, options, 39);
      map.addOverlay(marker);
      aLocations[39] = new Array(marker, "Arreglos de ropa en Barcelona", InfoHTML, point);
	  
	   
      point = new GLatLng(42.507967, 1.523709);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"http://tailor.es/tiendas.php#andorra\" >M&aacute;s informaci&oacute;n</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">Arreglos de ropa en Andorra - Grans Magatzems Pyrénées</div><div class=\"IWContent\">Arreglos de ropa en Andorra - Grans Magatzems Pyrénées. Costureras y modistas profesionales. Servicios urgentes en arreglos de ropa. Arreglos de ropa de vestir y del hogar.<br><br><br></div>" + footerHtml + "</div>";
      iconbig.image = "http://tailor.es/images/marker_tailor.png";
      marker = createMarker(point, InfoHTML, iconbig, options, 40);
      map.addOverlay(marker);
      aLocations[40] = new Array(marker, "Arreglos de ropa en Andorra", InfoHTML, point);
    



point = new GLatLng(42.506683, 1.530243);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"http://tailor.es/tiendas.php#andorra\" >M&aacute;s informaci&oacute;n</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">Arreglos de ropa en Andorra</div><div class=\"IWContent\">Arreglos de ropa en Andorra. Costureras y modistas profesionales. Servicios urgentes en arreglos de ropa. Arreglos de ropa de vestir y del hogar.<br><br><br></div>" + footerHtml + "</div>";
      iconbig.image = "http://tailor.es/images/marker_tailor.png";
      marker = createMarker(point, InfoHTML, iconbig, options, 0);
      map.addOverlay(marker);
      aLocations[41] = new Array(marker, "Arreglos de ropa en Andorra", InfoHTML, point);
	  
	  

	  point = new GLatLng(41.644183, -0.994434);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"http://tailor.es/tiendas.php#zaragoza\" >M&aacute;s informaci&oacute;n</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">Arreglos de ropa en Zaragoza</div><div class=\"IWContent\">Arreglos de ropa en Zaragoza. Costureras y modistas profesionales. Servicios urgentes en arreglos de ropa. Arreglos de ropa de vestir y del hogar.<br><br><br></div>" + footerHtml + "</div>";
      iconbig.image = "http://tailor.es/images/marker_tailor.png";
      marker = createMarker(point, InfoHTML, iconbig, options, 0);
      map.addOverlay(marker);
      aLocations[42] = new Array(marker, "Arreglos de ropa en Zaragoza", InfoHTML, point);

	
	
	 point = new GLatLng(41.72258903011604, 1.8439891934394836);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"http://tailor.es/tiendas.php#barcelona\" >M&aacute;s informaci&oacute;n</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">Arreglos de ropa en Barcelona</div><div class=\"IWContent\">C.C. Carrefour Manresa. Arreglos de ropa en Barcelona. Costureras y modistas profesionales. Servicios urgentes en arreglos de ropa. Arreglos de ropa de vestir y del hogar.<br><br><br></div>" + footerHtml + "</div>";
      iconbig.image = "http://tailor.es/images/marker_tailor.png";
      marker = createMarker(point, InfoHTML, iconbig, options, 0);
      map.addOverlay(marker);
      aLocations[43] = new Array(marker, "Arreglos de ropa en Barcelona", InfoHTML, point);
	}
    //]]>

