//<![CDATA[
$(function(){
	if(typeof(GBrowserIsCompatible) == 'function'){
    if (GBrowserIsCompatible() && document.getElementById('map')) {
      var map = new GMap2(document.getElementById("map"));
      map.setCenter(new GLatLng(37.4419, -122.1419), 13);
    }
		$('body').bind('unload', function(){
			GUnload();
		})
	}
});
//]]>