//<![CDATA[
function initialize(){
	if (GBrowserIsCompatible()){
		var map = new GMap2(document.getElementById("map_canvas"));
		map.setCenter(new GLatLng(28.756669,-81.325100), 12);
		map.addControl(new GSmallMapControl());
		var marker = new GMarker(new GLatLng(28.756669,-81.325100));
		map.addOverlay(marker);
	}else{
		alert("Sorry, the Google Map that was intended to display is not compatible with this browser.");
	}
}
//]]>