// JavaScript Document
// JavaScript Document
//<![CDATA[
 var map = null;
 Event.observe(window, 'load', load);
 Event.observe(window, 'unload', GUnload);
 
    function load() {
      if (GBrowserIsCompatible()) {
  
    // Create the map
    // Make sure this element has the same ID as your div
    var map = new GMap2(document.getElementById("childrenshospital"));
    // Add controls for moving and zooming the map.  Use GSmallMapControl for small maps
    map.addControl(new GLargeMapControl());
    // Add controls for switching between regular and satellite views
    map.addControl(new GMapTypeControl());
    // Set the starting position and zoom level when the map loads
    map.setCenter(new GLatLng(40.466162, -79.952248), 13);
    //add non-clickable marker
    var marker = new GMarker(new GLatLng(40.466162, -79.952248), {clickable:false}); 
      map.addOverlay(marker);
   }
    
    }
 
    //]]>
