function initialize() {
	if (GBrowserIsCompatible()) {
		var officePoint = new GLatLng($("#maplat").text(), $("#maplong").text());
		var map = new GMap2(document.getElementById('map'));
		map.setCenter(officePoint, 15);
		map.setUIToDefault();
		map.disableScrollWheelZoom();		
		var marker = new GMarker(officePoint);
		map.addOverlay(marker);
	}
}
window.onload = function() {
	initialize();
}
window.onunload = function() {
	GUnload();
}
