function initialize() {
	if (GBrowserIsCompatible()) {
		var map = new GMap2(document.getElementById("map_canvas"));
		map.setCenter(new GLatLng(10.494142, -66.877883), 18);
		map.setUIToDefault();
		map.setMapType(G_HYBRID_MAP);
		
		var cecimIcon = new GIcon(G_DEFAULT_ICON);
		cecimIcon.image = "http://cecim.com.ve/images/icoGM.png";
		cecimIcon.iconSize = new GSize(172, 105);
		cecimIcon.iconAnchor = new GPoint(154, 86);
		cecimIcon.shadowSize = new GSize(0, 0);
		markerOptions = { icon:cecimIcon };
		
		var mapCenter = new GLatLng(10.494142, -66.877883);
		
		map.addOverlay(new GMarker(mapCenter, markerOptions));
		
		var metroIcon = new GIcon(G_DEFAULT_ICON);
		metroIcon.image = "http://cecim.com.ve/images/metrologo.png";
		metroIcon.iconSize = new GSize(20, 20);
		metroIcon.shadowSize = new GSize(0, 0);
		markerOptions = { icon:metroIcon };
		
		var metroLoc1 = new GLatLng(10.494142,-66.877003);
		
		map.addOverlay(new GMarker(metroLoc1, markerOptions));
		
		var metroLoc2 = new GLatLng(10.494005,-66.877003);
		
		map.addOverlay(new GMarker(metroLoc2, markerOptions));
		
		GEvent.addListener(map, "dblclick", function() {
			var center = map.getCenter();
			alert(center.toString());
		});
 }
}

