function loadMap(){
  var mylatlng = new GLatLng(50.70243769160708,-119.24950003623962);
  var map = new GMap2(document.getElementById("gmap-canvas"));
  map.setCenter(mylatlng, 14);
  map.addControl(new GSmallMapControl());

  blueIcon = new GIcon(G_DEFAULT_ICON);
  blueIcon.image = "http://www.google.com/intl/en_us/mapfiles/ms/micons/blue-dot.png";
                
  // Set up our GMarkerOptions object
  markerOptions = { icon:blueIcon };
  map.addOverlay(new GMarker(mylatlng), markerOptions);

  GEvent.addListener(map, "tilesloaded", removeStaticMap);

  //console.log(map.getCenter());
}

function removeStaticMap(){
  window.setTimeout(pushStaticMap,2000);

  function pushStaticMap(){
    $('#static-map').css('z-index', '0');
  }
}

