// JavaScript Document
   
   //<![CDATA[

    function load() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map"));
		map.addControl(new GSmallMapControl());
		map.addControl(new GMapTypeControl());
        map.setCenter(new GLatLng(40.761186,-73.424551), 13);
		var infoTabs = [
  			new GInfoWindowTab("Tab #1", "<center><strong>Suburban Eats</strong><br>610 Broadhollow Rd.<br>Melville, NY 11747</center>")
		];
// Place a marker in the center of the map and open the info window
// automatically
		var marker = new GMarker(map.getCenter());
		GEvent.addListener(marker, "click", function() {
		  marker.openInfoWindowTabsHtml(infoTabs);
		});
map.addOverlay(marker);
marker.openInfoWindowTabsHtml(infoTabs);
      }
    }

    //]]>
  
/**Code that was originally in the body tag,then rewrote to be put in the header and is now place in an external document.  
window.onload=load;
window.onunload=GUnload;**/

