/*$Id: googleMaps.js 1683 2010-07-25 23:11:05Z antonio.jozzolino $*/

function initialize() {
	if (GBrowserIsCompatible()) {
		var map = new GMap2(document.getElementById("map"));
		map.setCenter(new GLatLng(-22.81394, -47.04417), 13);
		map.setUIToDefault();

		// Create our "tiny" marker icon
		var blueIcon = new GIcon(G_DEFAULT_ICON);
		blueIcon.image = "http://gmaps-samples.googlecode.com/svn/trunk/markers/green/blank.png";

		// Set up our GMarkerOptions object
		markerOptions = {
			icon : blueIcon
		};

		var latlng = new GLatLng(-22.81394, -47.04417);
		map.addOverlay(new GMarker(latlng, markerOptions));
	}
}

$j(document).ready(function() {
	initialize();
});

