// JavaScript Document
function initialize() { 
	if (GBrowserIsCompatible()) { 
		var map = new GMap2(document.getElementById("map_canvas")); 
		map.setCenter(new GLatLng(44.713094,-75.511072), 13); 
		map.setUIToDefault(); 
		// Add 10 markers to the map at random locations  

			var point = new GLatLng(44.713094,-75.511072);
			map.addOverlay(new GMarker(point));
	}
}
