//<![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 = true;

    // Create a base "tiny" red  icon that specifies the shadow, icon dimensions, etc.
    var iconsm = new GIcon();
    iconsm.image = "http://labs.google.com/ridefinder/images/mm_20_red.png";
    iconsm.shadow = "http://labs.google.com/ridefinder/images/mm_20_shadow.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://www.google.com/mapfiles/marker.png";
    iconbig.shadow = "http://www.google.com/mapfiles/shadow50.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 GSmallMapControl());
      map.addControl(new GMapTypeControl());
      // Center the map to the default location and set map type
      map.setCenter(new GLatLng(25.833887325974945, -80.25375366210937), 11, 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(25.951614, -80.263524);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"javascript:void(0)\" onclick=\"ZoomMapTo(0)\">Zoom To</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">$250000  3/2</div><div class=\"IWContent\">Ref. Number=  D1285470<BR><img alt=\"\" src=\"http://www.sellhousesmiami.com/img/D1285470.jpg\" height=\"90\" width=\"115\" /><BR><a href=\"http://www.sellhousesmiami.com/featured_homes.html#info\" target=\"_blank\">More Information</a></div>" + footerHtml + "</div>";
     iconcustom.iconSize = new GSize(32, 32);
     iconcustom.image = "http://www.sellhousesmiami.com/images/icon56.png";
     marker = createMarker(point, InfoHTML, iconcustom, options, 0);
	  	      map.addOverlay(marker);
      aLocations[0] = new Array(marker, "$250000  3/2", InfoHTML, point);
	
      point = new GLatLng(25.642883, -80.378647);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"javascript:void(0)\" onclick=\"ZoomMapTo(1)\">Zoom To</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">$255500  3/2</div><div class=\"IWContent\">Ref. Number=  D1289509<BR><img alt=\"\" src=\"http://www.sellhousesmiami.com/img/D1289509.jpg\" height=\"90\" width=\"115\" /><BR><a href=\"http://www.sellhousesmiami.com/featured_homes.html#info\" target=\"_blank\">More Information</a></div>" + footerHtml + "</div>";
     iconcustom.iconSize = new GSize(32, 32);
     iconcustom.image = "http://www.sellhousesmiami.com/images/icon56.png";
     marker = createMarker(point, InfoHTML, iconcustom, options, 1);
	  	      map.addOverlay(marker);
      aLocations[1] = new Array(marker, "$255500  3/2", InfoHTML, point);
	
      point = new GLatLng(25.966001, -80.177427);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"javascript:void(0)\" onclick=\"ZoomMapTo(2)\">Zoom To</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">$258888  4/2</div><div class=\"IWContent\">Ref. Number=  D1284087<BR><img alt=\"\" src=\"http://www.sellhousesmiami.com/img/D1284087.jpg\" height=\"90\" width=\"115\" /><BR><a href=\"http://www.sellhousesmiami.com/featured_homes.html#info\" target=\"_blank\">More Information</a></div>" + footerHtml + "</div>";
     iconcustom.iconSize = new GSize(32, 32);
     iconcustom.image = "http://www.sellhousesmiami.com/images/icon56.png";
     marker = createMarker(point, InfoHTML, iconcustom, options, 2);
	  	      map.addOverlay(marker);
      aLocations[2] = new Array(marker, "$258888  4/2", InfoHTML, point);
	
      point = new GLatLng(25.819511, -80.195432);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"javascript:void(0)\" onclick=\"ZoomMapTo(3)\">Zoom To</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">$259900  4/3</div><div class=\"IWContent\">Ref. Number=  D1285961<BR><img alt=\"\" src=\"http://www.sellhousesmiami.com/img/D1285961.jpg\" height=\"90\" width=\"115\" /><BR><a href=\"http://www.sellhousesmiami.com/featured_homes.html#info\" target=\"_blank\">More Information</a></div>" + footerHtml + "</div>";
     iconcustom.iconSize = new GSize(32, 32);
     iconcustom.image = "http://www.sellhousesmiami.com/images/icon56.png";
     marker = createMarker(point, InfoHTML, iconcustom, options, 3);
	  	      map.addOverlay(marker);
      aLocations[3] = new Array(marker, "$259900  4/3", InfoHTML, point);
	
      point = new GLatLng(25.762281, -80.235135);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"javascript:void(0)\" onclick=\"ZoomMapTo(4)\">Zoom To</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">$260000  3/3</div><div class=\"IWContent\">Ref. Number=  D1281452<BR><img alt=\"\" src=\"http://www.sellhousesmiami.com/img/D1281452.jpg\" height=\"90\" width=\"115\" /><BR><a href=\"http://www.sellhousesmiami.com/featured_homes.html#info\" target=\"_blank\">More Information</a></div>" + footerHtml + "</div>";
     iconcustom.iconSize = new GSize(32, 32);
     iconcustom.image = "http://www.sellhousesmiami.com/images/icon56.png";
     marker = createMarker(point, InfoHTML, iconcustom, options, 4);
	  	      map.addOverlay(marker);
      aLocations[4] = new Array(marker, "$260000  3/3", InfoHTML, point);
	
      point = new GLatLng(25.962419, -80.220103);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"javascript:void(0)\" onclick=\"ZoomMapTo(5)\">Zoom To</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">$269900  3/2</div><div class=\"IWContent\">Ref. Number=  D1290820<BR><img alt=\"\" src=\"http://www.sellhousesmiami.com/img/D1290820.jpg\" height=\"90\" width=\"115\" /><BR><a href=\"http://www.sellhousesmiami.com/featured_homes.html#info\" target=\"_blank\">More Information</a></div>" + footerHtml + "</div>";
     iconcustom.iconSize = new GSize(32, 32);
     iconcustom.image = "http://www.sellhousesmiami.com/images/icon56.png";
     marker = createMarker(point, InfoHTML, iconcustom, options, 5);
	  	      map.addOverlay(marker);
      aLocations[5] = new Array(marker, "$269900  3/2", InfoHTML, point);
	
      point = new GLatLng(25.978689, -80.261032);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"javascript:void(0)\" onclick=\"ZoomMapTo(6)\">Zoom To</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">$279000  3/2</div><div class=\"IWContent\">Ref. Number=  D1280148<BR><img alt=\"\" src=\"http://www.sellhousesmiami.com/img/D1280148.jpg\" height=\"90\" width=\"115\" /><BR><a href=\"http://www.sellhousesmiami.com/featured_homes.html#info\" target=\"_blank\">More Information</a></div>" + footerHtml + "</div>";
     iconcustom.iconSize = new GSize(32, 32);
     iconcustom.image = "http://www.sellhousesmiami.com/images/icon56.png";
     marker = createMarker(point, InfoHTML, iconcustom, options, 6);
	  	      map.addOverlay(marker);
      aLocations[6] = new Array(marker, "$279000  3/2", InfoHTML, point);
	
      point = new GLatLng(25.865446, -80.189425);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"javascript:void(0)\" onclick=\"ZoomMapTo(7)\">Zoom To</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">$279900  3/2</div><div class=\"IWContent\">Ref. Number=  D1290955<BR><img alt=\"\" src=\"http://www.sellhousesmiami.com/img/D1290955.jpg\" height=\"90\" width=\"115\" /><BR><a href=\"http://www.sellhousesmiami.com/featured_homes.html#info\" target=\"_blank\">More Information</a></div>" + footerHtml + "</div>";
     iconcustom.iconSize = new GSize(32, 32);
     iconcustom.image = "http://www.sellhousesmiami.com/images/icon56.png";
     marker = createMarker(point, InfoHTML, iconcustom, options, 7);
	  	      map.addOverlay(marker);
      aLocations[7] = new Array(marker, "$279900  3/2", InfoHTML, point);
	
      point = new GLatLng(25.949052, -80.210545);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"javascript:void(0)\" onclick=\"ZoomMapTo(8)\">Zoom To</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">$280000  3/2</div><div class=\"IWContent\">Ref. Number=  H847990<BR><img alt=\"\" src=\"http://www.sellhousesmiami.com/img/H847990.jpg\" height=\"90\" width=\"115\" /><BR><a href=\"http://www.sellhousesmiami.com/featured_homes.html#info\" target=\"_blank\">More Information</a></div>" + footerHtml + "</div>";
     iconcustom.iconSize = new GSize(32, 32);
     iconcustom.image = "http://www.sellhousesmiami.com/images/icon56.png";
     marker = createMarker(point, InfoHTML, iconcustom, options, 8);
	  	      map.addOverlay(marker);
      aLocations[8] = new Array(marker, "$280000  3/2", InfoHTML, point);
	
      point = new GLatLng(25.908696, -80.220468);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"javascript:void(0)\" onclick=\"ZoomMapTo(9)\">Zoom To</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">$289000  3/2</div><div class=\"IWContent\">Ref. Number=  D1260752<BR><img alt=\"\" src=\"http://www.sellhousesmiami.com/img/D1260752.jpg\" height=\"90\" width=\"115\" /><BR><a href=\"http://www.sellhousesmiami.com/featured_homes.html#info\" target=\"_blank\">More Information</a></div>" + footerHtml + "</div>";
     iconcustom.iconSize = new GSize(32, 32);
     iconcustom.image = "http://www.sellhousesmiami.com/images/icon56.png";
     marker = createMarker(point, InfoHTML, iconcustom, options, 9);
	  	      map.addOverlay(marker);
      aLocations[9] = new Array(marker, "$289000  3/2", InfoHTML, point);
	
      point = new GLatLng(25.837814, -80.20306);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"javascript:void(0)\" onclick=\"ZoomMapTo(10)\">Zoom To</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">$289000  3/2</div><div class=\"IWContent\">Ref. Number=  D1270204<BR><img alt=\"\" src=\"http://www.sellhousesmiami.com/img/D1270204.jpg\" height=\"90\" width=\"115\" /><BR><a href=\"http://www.sellhousesmiami.com/featured_homes.html#info\" target=\"_blank\">More Information</a></div>" + footerHtml + "</div>";
     iconcustom.iconSize = new GSize(32, 32);
     iconcustom.image = "http://www.sellhousesmiami.com/images/icon56.png";
     marker = createMarker(point, InfoHTML, iconcustom, options, 10);
	  	      map.addOverlay(marker);
      aLocations[10] = new Array(marker, "$289000  3/2", InfoHTML, point);
	
      point = new GLatLng(25.700878, -80.433425);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"javascript:void(0)\" onclick=\"ZoomMapTo(11)\">Zoom To</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">$295000  4/2</div><div class=\"IWContent\">Ref. Number=  D1290153<BR><img alt=\"\" src=\"http://www.sellhousesmiami.com/img/D1290153.jpg\" height=\"90\" width=\"115\" /><BR><a href=\"http://www.sellhousesmiami.com/featured_homes.html#info\" target=\"_blank\">More Information</a></div>" + footerHtml + "</div>";
     iconcustom.iconSize = new GSize(32, 32);
     iconcustom.image = "http://www.sellhousesmiami.com/images/icon56.png";
     marker = createMarker(point, InfoHTML, iconcustom, options, 11);
	  	      map.addOverlay(marker);
      aLocations[11] = new Array(marker, "$295000  4/2", InfoHTML, point);
	
      point = new GLatLng(25.908403, -80.341272);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"javascript:void(0)\" onclick=\"ZoomMapTo(12)\">Zoom To</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">$299000  4/2</div><div class=\"IWContent\">Ref. Number=  D1256396<BR><img alt=\"\" src=\"http://www.sellhousesmiami.com/img/D1256396.jpg\" height=\"90\" width=\"115\" /><BR><a href=\"http://www.sellhousesmiami.com/featured_homes.html#info\" target=\"_blank\">More Information</a></div>" + footerHtml + "</div>";
     iconcustom.iconSize = new GSize(32, 32);
     iconcustom.image = "http://www.sellhousesmiami.com/images/icon56.png";
     marker = createMarker(point, InfoHTML, iconcustom, options, 12);
	  	      map.addOverlay(marker);
      aLocations[12] = new Array(marker, "$299000  4/2", InfoHTML, point);
	
      point = new GLatLng(25.8215, -80.26379);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"javascript:void(0)\" onclick=\"ZoomMapTo(13)\">Zoom To</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">$300000  4/2</div><div class=\"IWContent\">Ref. Number=  D1265918<BR><img alt=\"\" src=\"http://www.sellhousesmiami.com/img/D1265918.jpg\" height=\"90\" width=\"115\" /><BR><a href=\"http://www.sellhousesmiami.com/featured_homes.html#info\" target=\"_blank\">More Information</a></div>" + footerHtml + "</div>";
     iconcustom.iconSize = new GSize(32, 32);
     iconcustom.image = "http://www.sellhousesmiami.com/images/icon56.png";
     marker = createMarker(point, InfoHTML, iconcustom, options, 13);
	  	      map.addOverlay(marker);
      aLocations[13] = new Array(marker, "$300000  4/2", InfoHTML, point);
	
      point = new GLatLng(25.94453, -80.338089);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"javascript:void(0)\" onclick=\"ZoomMapTo(14)\">Zoom To</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">$305000  3/2</div><div class=\"IWContent\">Ref. Number=  D1278242<BR><img alt=\"\" src=\"http://www.sellhousesmiami.com/img/D1278242.jpg\" height=\"90\" width=\"115\" /><BR><a href=\"http://www.sellhousesmiami.com/featured_homes.html#info\" target=\"_blank\">More Information</a></div>" + footerHtml + "</div>";
     iconcustom.iconSize = new GSize(32, 32);
     iconcustom.image = "http://www.sellhousesmiami.com/images/icon56.png";
     marker = createMarker(point, InfoHTML, iconcustom, options, 14);
	  	      map.addOverlay(marker);
      aLocations[14] = new Array(marker, "$305000  3/2", InfoHTML, point);
	
      point = new GLatLng(25.894264, -80.192512);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"javascript:void(0)\" onclick=\"ZoomMapTo(15)\">Zoom To</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">$333888  4/2</div><div class=\"IWContent\">Ref. Number=  D1266383<BR><img alt=\"\" src=\"http://www.sellhousesmiami.com/img/D1266383.jpg\" height=\"90\" width=\"115\" /><BR><a href=\"http://www.sellhousesmiami.com/featured_homes.html#info\" target=\"_blank\">More Information</a></div>" + footerHtml + "</div>";
     iconcustom.iconSize = new GSize(32, 32);
     iconcustom.image = "http://www.sellhousesmiami.com/images/icon56.png";
     marker = createMarker(point, InfoHTML, iconcustom, options, 15);
	  	      map.addOverlay(marker);
      aLocations[15] = new Array(marker, "$333888  4/2", InfoHTML, point);
	
      point = new GLatLng(25.751721, -80.447022);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"javascript:void(0)\" onclick=\"ZoomMapTo(16)\">Zoom To</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">$349900  4/3</div><div class=\"IWContent\">Ref. Number=  D1279752<BR><img alt=\"\" src=\"http://www.sellhousesmiami.com/img/D1279752.jpg\" height=\"90\" width=\"115\" /><BR><a href=\"http://www.sellhousesmiami.com/featured_homes.html#info\" target=\"_blank\">More Information</a></div>" + footerHtml + "</div>";
     iconcustom.iconSize = new GSize(32, 32);
     iconcustom.image = "http://www.sellhousesmiami.com/images/icon56.png";
     marker = createMarker(point, InfoHTML, iconcustom, options, 16);
	  	      map.addOverlay(marker);
      aLocations[16] = new Array(marker, "$349900  4/3", InfoHTML, point);
	
      point = new GLatLng(25.955099, -80.328005);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"javascript:void(0)\" onclick=\"ZoomMapTo(17)\">Zoom To</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">$356500  3/2</div><div class=\"IWContent\">Ref. Number=  D1278594<BR><img alt=\"\" src=\"http://www.sellhousesmiami.com/img/D1278594.jpg\" height=\"90\" width=\"115\" /><BR><a href=\"http://www.sellhousesmiami.com/featured_homes.html#info\" target=\"_blank\">More Information</a></div>" + footerHtml + "</div>";
     iconcustom.iconSize = new GSize(32, 32);
     iconcustom.image = "http://www.sellhousesmiami.com/images/icon56.png";
     marker = createMarker(point, InfoHTML, iconcustom, options, 17);
	  	      map.addOverlay(marker);
      aLocations[17] = new Array(marker, "$356500  3/2", InfoHTML, point);
	
      point = new GLatLng(25.955866, -80.339622);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"javascript:void(0)\" onclick=\"ZoomMapTo(18)\">Zoom To</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">$360000  4/3</div><div class=\"IWContent\">Ref. Number=  D1291095<BR><img alt=\"\" src=\"http://www.sellhousesmiami.com/img/D1291095.jpg\" height=\"90\" width=\"115\" /><BR><a href=\"http://www.sellhousesmiami.com/featured_homes.html#info\" target=\"_blank\">More Information</a></div>" + footerHtml + "</div>";
     iconcustom.iconSize = new GSize(32, 32);
     iconcustom.image = "http://www.sellhousesmiami.com/images/icon56.png";
     marker = createMarker(point, InfoHTML, iconcustom, options, 18);
	  	      map.addOverlay(marker);
      aLocations[18] = new Array(marker, "$360000  4/3", InfoHTML, point);
	
      point = new GLatLng(25.955104, -80.327778);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"javascript:void(0)\" onclick=\"ZoomMapTo(19)\">Zoom To</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">$365500  4/2</div><div class=\"IWContent\">Ref. Number=  D1278207<BR><img alt=\"\" src=\"http://www.sellhousesmiami.com/img/D1278207.jpg\" height=\"90\" width=\"115\" /><BR><a href=\"http://www.sellhousesmiami.com/featured_homes.html#info\" target=\"_blank\">More Information</a></div>" + footerHtml + "</div>";
     iconcustom.iconSize = new GSize(32, 32);
     iconcustom.image = "http://www.sellhousesmiami.com/images/icon56.png";
     marker = createMarker(point, InfoHTML, iconcustom, options, 19);
	  	      map.addOverlay(marker);
      aLocations[19] = new Array(marker, "$365500  4/2", InfoHTML, point);
	
      point = new GLatLng(25.974319, -80.365411);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"javascript:void(0)\" onclick=\"ZoomMapTo(20)\">Zoom To</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">$370000  4/2</div><div class=\"IWContent\">Ref. Number=  D1266553<BR><img alt=\"\" src=\"http://www.sellhousesmiami.com/img/D1266553.jpg\" height=\"90\" width=\"115\" /><BR><a href=\"http://www.sellhousesmiami.com/featured_homes.html#info\" target=\"_blank\">More Information</a></div>" + footerHtml + "</div>";
     iconcustom.iconSize = new GSize(32, 32);
     iconcustom.image = "http://www.sellhousesmiami.com/images/icon56.png";
     marker = createMarker(point, InfoHTML, iconcustom, options, 20);
	  	      map.addOverlay(marker);
      aLocations[20] = new Array(marker, "$370000  4/2", InfoHTML, point);
	
      point = new GLatLng(25.953178, -80.342297);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"javascript:void(0)\" onclick=\"ZoomMapTo(21)\">Zoom To</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">$379900  3/2</div><div class=\"IWContent\">Ref. Number=  D1275364<BR><img alt=\"\" src=\"http://www.sellhousesmiami.com/img/D1275364.jpg\" height=\"90\" width=\"115\" /><BR><a href=\"http://www.sellhousesmiami.com/featured_homes.html#info\" target=\"_blank\">More Information</a></div>" + footerHtml + "</div>";
     iconcustom.iconSize = new GSize(32, 32);
     iconcustom.image = "http://www.sellhousesmiami.com/images/icon56.png";
     marker = createMarker(point, InfoHTML, iconcustom, options, 21);
	  	      map.addOverlay(marker);
      aLocations[21] = new Array(marker, "$379900  3/2", InfoHTML, point);
	
      point = new GLatLng(25.9523, -80.32773);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"javascript:void(0)\" onclick=\"ZoomMapTo(22)\">Zoom To</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">$379990  4/2</div><div class=\"IWContent\">Ref. Number=  D1260795<BR><img alt=\"\" src=\"http://www.sellhousesmiami.com/img/D1260795.jpg\" height=\"90\" width=\"115\" /><BR><a href=\"http://www.sellhousesmiami.com/featured_homes.html#info\" target=\"_blank\">More Information</a></div>" + footerHtml + "</div>";
     iconcustom.iconSize = new GSize(32, 32);
     iconcustom.image = "http://www.sellhousesmiami.com/images/icon56.png";
     marker = createMarker(point, InfoHTML, iconcustom, options, 22);
	  	      map.addOverlay(marker);
      aLocations[22] = new Array(marker, "$379990  4/2", InfoHTML, point);
	
      point = new GLatLng(25.667171, -80.444489);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"javascript:void(0)\" onclick=\"ZoomMapTo(23)\">Zoom To</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">$380000  3/2</div><div class=\"IWContent\">Ref. Number=  D1274271<BR><img alt=\"\" src=\"http://www.sellhousesmiami.com/img/D1274271.jpg\" height=\"90\" width=\"115\" /><BR><a href=\"http://www.sellhousesmiami.com/featured_homes.html#info\" target=\"_blank\">More Information</a></div>" + footerHtml + "</div>";
     iconcustom.iconSize = new GSize(32, 32);
     iconcustom.image = "http://www.sellhousesmiami.com/images/icon56.png";
     marker = createMarker(point, InfoHTML, iconcustom, options, 23);
	  	      map.addOverlay(marker);
      aLocations[23] = new Array(marker, "$380000  3/2", InfoHTML, point);
	
      point = new GLatLng(25.868103, -80.204345);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"javascript:void(0)\" onclick=\"ZoomMapTo(24)\">Zoom To</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">$399000  4/3</div><div class=\"IWContent\">Ref. Number=  D1278491<BR><img alt=\"\" src=\"http://www.sellhousesmiami.com/img/D1278491.jpg\" height=\"90\" width=\"115\" /><BR><a href=\"http://www.sellhousesmiami.com/featured_homes.html#info\" target=\"_blank\">More Information</a></div>" + footerHtml + "</div>";
     iconcustom.iconSize = new GSize(32, 32);
     iconcustom.image = "http://www.sellhousesmiami.com/images/icon56.png";
     marker = createMarker(point, InfoHTML, iconcustom, options, 24);
	  	      map.addOverlay(marker);
      aLocations[24] = new Array(marker, "$399000  4/3", InfoHTML, point);
	
      point = new GLatLng(25.977339, -80.201849);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"javascript:void(0)\" onclick=\"ZoomMapTo(25)\">Zoom To</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">$399999  3/2</div><div class=\"IWContent\">Ref. Number=  D1286227<BR><img alt=\"\" src=\"http://www.sellhousesmiami.com/img/D1286227.jpg\" height=\"90\" width=\"115\" /><BR><a href=\"http://www.sellhousesmiami.com/featured_homes.html#info\" target=\"_blank\">More Information</a></div>" + footerHtml + "</div>";
     iconcustom.iconSize = new GSize(32, 32);
     iconcustom.image = "http://www.sellhousesmiami.com/images/icon56.png";
     marker = createMarker(point, InfoHTML, iconcustom, options, 25);
	  	      map.addOverlay(marker);
      aLocations[25] = new Array(marker, "$399999  3/2", InfoHTML, point);
	
      point = new GLatLng(25.943182, -80.327242);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"javascript:void(0)\" onclick=\"ZoomMapTo(26)\">Zoom To</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">$404990  4/2</div><div class=\"IWContent\">Ref. Number=  D1276180<BR><img alt=\"\" src=\"http://www.sellhousesmiami.com/img/D1276180.jpg\" height=\"90\" width=\"115\" /><BR><a href=\"http://www.sellhousesmiami.com/featured_homes.html#info\" target=\"_blank\">More Information</a></div>" + footerHtml + "</div>";
     iconcustom.iconSize = new GSize(32, 32);
     iconcustom.image = "http://www.sellhousesmiami.com/images/icon56.png";
     marker = createMarker(point, InfoHTML, iconcustom, options, 26);
	  	      map.addOverlay(marker);
      aLocations[26] = new Array(marker, "$404990  4/2", InfoHTML, point);
	
      point = new GLatLng(25.828065, -80.325866);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"javascript:void(0)\" onclick=\"ZoomMapTo(27)\">Zoom To</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">$410000  4/2</div><div class=\"IWContent\">Ref. Number=  D1255312<BR><img alt=\"\" src=\"http://www.sellhousesmiami.com/img/D1255312.jpg\" height=\"90\" width=\"115\" /><BR><a href=\"http://www.sellhousesmiami.com/featured_homes.html#info\" target=\"_blank\">More Information</a></div>" + footerHtml + "</div>";
     iconcustom.iconSize = new GSize(32, 32);
     iconcustom.image = "http://www.sellhousesmiami.com/images/icon56.png";
     marker = createMarker(point, InfoHTML, iconcustom, options, 27);
	  	      map.addOverlay(marker);
      aLocations[27] = new Array(marker, "$410000  4/2", InfoHTML, point);
	
      point = new GLatLng(25.760302, -80.299365);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"javascript:void(0)\" onclick=\"ZoomMapTo(28)\">Zoom To</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">$420000  3/2</div><div class=\"IWContent\">Ref. Number=  D1275024<BR><img alt=\"\" src=\"http://www.sellhousesmiami.com/img/D1275024.jpg\" height=\"90\" width=\"115\" /><BR><a href=\"http://www.sellhousesmiami.com/featured_homes.html#info\" target=\"_blank\">More Information</a></div>" + footerHtml + "</div>";
     iconcustom.iconSize = new GSize(32, 32);
     iconcustom.image = "http://www.sellhousesmiami.com/images/icon56.png";
     marker = createMarker(point, InfoHTML, iconcustom, options, 28);
	  	      map.addOverlay(marker);
      aLocations[28] = new Array(marker, "$420000  3/2", InfoHTML, point);
	
      point = new GLatLng(25.927164, -80.3462);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"javascript:void(0)\" onclick=\"ZoomMapTo(29)\">Zoom To</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">$425000  4/2</div><div class=\"IWContent\">Ref. Number=  D1271463<BR><img alt=\"\" src=\"http://www.sellhousesmiami.com/img/D1271463.jpg\" height=\"90\" width=\"115\" /><BR><a href=\"http://www.sellhousesmiami.com/featured_homes.html#info\" target=\"_blank\">More Information</a></div>" + footerHtml + "</div>";
     iconcustom.iconSize = new GSize(32, 32);
     iconcustom.image = "http://www.sellhousesmiami.com/images/icon56.png";
     marker = createMarker(point, InfoHTML, iconcustom, options, 29);
	  	      map.addOverlay(marker);
      aLocations[29] = new Array(marker, "$425000  4/2", InfoHTML, point);
	
      point = new GLatLng(25.775179, -80.409958);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"javascript:void(0)\" onclick=\"ZoomMapTo(30)\">Zoom To</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">$430000  4/2</div><div class=\"IWContent\">Ref. Number=  D1291376<BR><img alt=\"\" src=\"http://www.sellhousesmiami.com/img/D1291376.jpg\" height=\"90\" width=\"115\" /><BR><a href=\"http://www.sellhousesmiami.com/featured_homes.html#info\" target=\"_blank\">More Information</a></div>" + footerHtml + "</div>";
     iconcustom.iconSize = new GSize(32, 32);
     iconcustom.image = "http://www.sellhousesmiami.com/images/icon56.png";
     marker = createMarker(point, InfoHTML, iconcustom, options, 30);
	  	      map.addOverlay(marker);
      aLocations[30] = new Array(marker, "$430000  4/2", InfoHTML, point);
	
      point = new GLatLng(25.948695, -80.319747);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"javascript:void(0)\" onclick=\"ZoomMapTo(31)\">Zoom To</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">$450000  4/3</div><div class=\"IWContent\">Ref. Number=  D1283723<BR><img alt=\"\" src=\"http://www.sellhousesmiami.com/img/D1283723.jpg\" height=\"90\" width=\"115\" /><BR><a href=\"http://www.sellhousesmiami.com/featured_homes.html#info\" target=\"_blank\">More Information</a></div>" + footerHtml + "</div>";
     iconcustom.iconSize = new GSize(32, 32);
     iconcustom.image = "http://www.sellhousesmiami.com/images/icon56.png";
     marker = createMarker(point, InfoHTML, iconcustom, options, 31);
	  	      map.addOverlay(marker);
      aLocations[31] = new Array(marker, "$450000  4/3", InfoHTML, point);
	
      point = new GLatLng(25.755284, -80.200983);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"javascript:void(0)\" onclick=\"ZoomMapTo(32)\">Zoom To</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">$599000  3/2</div><div class=\"IWContent\">Ref. Number=  D1262100<BR><img alt=\"\" src=\"http://www.sellhousesmiami.com/img/D1262100.jpg\" height=\"90\" width=\"115\" /><BR><a href=\"http://www.sellhousesmiami.com/featured_homes.html#info\" target=\"_blank\">More Information</a></div>" + footerHtml + "</div>";
     iconcustom.iconSize = new GSize(32, 32);
     iconcustom.image = "http://www.sellhousesmiami.com/images/icon56.png";
     marker = createMarker(point, InfoHTML, iconcustom, options, 32);
	  	      map.addOverlay(marker);
      aLocations[32] = new Array(marker, "$599000  3/2", InfoHTML, point);
	
      point = new GLatLng(25.709068, -80.300611);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"javascript:void(0)\" onclick=\"ZoomMapTo(33)\">Zoom To</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">$619000  3/3</div><div class=\"IWContent\">Ref. Number=  D1293347<BR><img alt=\"\" src=\"http://www.sellhousesmiami.com/img/D1293347.jpg\" height=\"90\" width=\"115\" /><BR><a href=\"http://www.sellhousesmiami.com/featured_homes.html#info\" target=\"_blank\">More Information</a></div>" + footerHtml + "</div>";
     iconcustom.iconSize = new GSize(32, 32);
     iconcustom.image = "http://www.sellhousesmiami.com/images/icon56.png";
     marker = createMarker(point, InfoHTML, iconcustom, options, 33);
	  	      map.addOverlay(marker);
      aLocations[33] = new Array(marker, "$619000  3/3", InfoHTML, point);
	
      point = new GLatLng(25.833099, -80.182948);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"javascript:void(0)\" onclick=\"ZoomMapTo(34)\">Zoom To</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">$675000  3/2</div><div class=\"IWContent\">Ref. Number=  D1265138<BR><img alt=\"\" src=\"http://www.sellhousesmiami.com/img/D1265138.jpg\" height=\"90\" width=\"115\" /><BR><a href=\"http://www.sellhousesmiami.com/featured_homes.html#info\" target=\"_blank\">More Information</a></div>" + footerHtml + "</div>";
     iconcustom.iconSize = new GSize(32, 32);
     iconcustom.image = "http://www.sellhousesmiami.com/images/icon56.png";
     marker = createMarker(point, InfoHTML, iconcustom, options, 34);
	  	      map.addOverlay(marker);
      aLocations[34] = new Array(marker, "$675000  3/2", InfoHTML, point);
	
      point = new GLatLng(25.918219, -80.335046);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"javascript:void(0)\" onclick=\"ZoomMapTo(35)\">Zoom To</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">$680000  4/2</div><div class=\"IWContent\">Ref. Number=  D1288989<BR><img alt=\"\" src=\"http://www.sellhousesmiami.com/img/D1288989.jpg\" height=\"90\" width=\"115\" /><BR><a href=\"http://www.sellhousesmiami.com/featured_homes.html#info\" target=\"_blank\">More Information</a></div>" + footerHtml + "</div>";
     iconcustom.iconSize = new GSize(32, 32);
     iconcustom.image = "http://www.sellhousesmiami.com/images/icon56.png";
     marker = createMarker(point, InfoHTML, iconcustom, options, 35);
	  	      map.addOverlay(marker);
      aLocations[35] = new Array(marker, "$680000  4/2", InfoHTML, point);
	
      point = new GLatLng(25.735744, -80.233145);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"javascript:void(0)\" onclick=\"ZoomMapTo(36)\">Zoom To</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">$700000  4/3</div><div class=\"IWContent\">Ref. Number=  D1275333<BR><img alt=\"\" src=\"http://www.sellhousesmiami.com/img/D1275333.jpg\" height=\"90\" width=\"115\" /><BR><a href=\"http://www.sellhousesmiami.com/featured_homes.html#info\" target=\"_blank\">More Information</a></div>" + footerHtml + "</div>";
     iconcustom.iconSize = new GSize(32, 32);
     iconcustom.image = "http://www.sellhousesmiami.com/images/icon56.png";
     marker = createMarker(point, InfoHTML, iconcustom, options, 36);
	  	      map.addOverlay(marker);
      aLocations[36] = new Array(marker, "$700000  4/3", InfoHTML, point);
	
      point = new GLatLng(25.738804, -80.257867);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"javascript:void(0)\" onclick=\"ZoomMapTo(37)\">Zoom To</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">$725000  3/3</div><div class=\"IWContent\">Ref. Number=  D1277840<BR><img alt=\"\" src=\"http://www.sellhousesmiami.com/img/D1277840.jpg\" height=\"90\" width=\"115\" /><BR><a href=\"http://www.sellhousesmiami.com/featured_homes.html#info\" target=\"_blank\">More Information</a></div>" + footerHtml + "</div>";
     iconcustom.iconSize = new GSize(32, 32);
     iconcustom.image = "http://www.sellhousesmiami.com/images/icon56.png";
     marker = createMarker(point, InfoHTML, iconcustom, options, 37);
	  	      map.addOverlay(marker);
      aLocations[37] = new Array(marker, "$725000  3/3", InfoHTML, point);
	
      point = new GLatLng(25.899236, -80.150466);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"javascript:void(0)\" onclick=\"ZoomMapTo(38)\">Zoom To</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">$875000  3/2</div><div class=\"IWContent\">Ref. Number=  D1286167<BR><img alt=\"\" src=\"http://www.sellhousesmiami.com/img/D1286167.jpg\" height=\"90\" width=\"115\" /><BR><a href=\"http://www.sellhousesmiami.com/featured_homes.html#info\" target=\"_blank\">More Information</a></div>" + footerHtml + "</div>";
     iconcustom.iconSize = new GSize(32, 32);
     iconcustom.image = "http://www.sellhousesmiami.com/images/icon56.png";
     marker = createMarker(point, InfoHTML, iconcustom, options, 38);
	  	      map.addOverlay(marker);
      aLocations[38] = new Array(marker, "$875000  3/2", InfoHTML, point);
	
      point = new GLatLng(25.967872, -80.138599);
      footerHtml = "<div class=\"IWFooter\"><div class=\"IWFooterZoom\"><a href=\"javascript:void(0)\" onclick=\"ZoomMapTo(39)\">Zoom To</a></div></div>";

      // Define Marker
      InfoHTML = "<div class=\"IW\"><div class=\"IWCaption\">$885000  4/3</div><div class=\"IWContent\">Ref. Number=  D1267441<BR><img alt=\"\" src=\"http://www.sellhousesmiami.com/img/D1267441.jpg\" height=\"90\" width=\"115\" /><BR><a href=\"http://www.sellhousesmiami.com/featured_homes.html#info\" target=\"_blank\">More Information</a></div>" + footerHtml + "</div>";
     iconcustom.iconSize = new GSize(32, 32);
     iconcustom.image = "http://www.sellhousesmiami.com/images/icon56.png";
     marker = createMarker(point, InfoHTML, iconcustom, options, 39);
	  	      map.addOverlay(marker);
      aLocations[39] = new Array(marker, "$885000  4/3", InfoHTML, point);
      // And finnaly create sidebar
      createSideBar();
    }
    //]]>
