/**
 * Wrapper around google maps
 */

function makeGoogleMap(selector, point, zoom, initFunc) {
  if (GBrowserIsCompatible())
    $(selector).each(function() {
      var map = new GMap2(this);
      map.setCenter(point, zoom || 13);
      if (initFunc)
        initFunc.call(map);
    });
}

$(document).unload(GUnload);

