//Osaki Map
window.addEvent('domready',function() {
		    var myLatLng = new google.maps.LatLng(4.697563366183884, -74.0427017211914);
			var myOptions = {
				zoom: 12,
				center: myLatLng,
				navigationControl: false,
				mapTypeControl: false,
				scaleControl: false,
				mapTypeId: google.maps.MapTypeId.ROADMAP
			};

			var domiciliosZone;
			var map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);

			var zoneCoords = [
				new google.maps.LatLng(4.63747,-74.06673),//almost last
				new google.maps.LatLng(4.636830000000001,-74.06356000000001),
				new google.maps.LatLng(4.63541,-74.05982),
				new google.maps.LatLng(4.6427700000000005,-74.05824000000001),
				new google.maps.LatLng(4.64341,-74.05304000000001),
				new google.maps.LatLng(4.649570000000001,-74.05034),
				new google.maps.LatLng(4.6541500000000005,-74.04983),
				new google.maps.LatLng(4.66134,-74.04695000000001),
				new google.maps.LatLng(4.664370000000001,-74.04665),
				new google.maps.LatLng(4.66912,-74.04),
				new google.maps.LatLng(4.68383,-74.0306),
				new google.maps.LatLng(4.68465, -74.03056000000001),
				new google.maps.LatLng(4.68614,-74.02914000000001),
				new google.maps.LatLng(4.69341,-74.02601),
				new google.maps.LatLng(4.695550000000001, -74.02566),
				new google.maps.LatLng(4.7035100000000005,-74.02352),
				new google.maps.LatLng(4.70962,-74.02528000000001),
				new google.maps.LatLng(4.711040000000001, -74.02493000000001),
				new google.maps.LatLng(4.71574,-74.02249),
				new google.maps.LatLng(4.72485,-74.02026000000001),
				new google.maps.LatLng(4.727670000000001,-74.02459),
				new google.maps.LatLng(4.73118,-74.03206),
				new google.maps.LatLng(4.73674,-74.04360000000001),
				new google.maps.LatLng(4.73777,-74.04871),
				new google.maps.LatLng(4.729380000000001,-74.05025),
				new google.maps.LatLng(4.72613,-74.05081000000001),
				new google.maps.LatLng(4.686780000000001,-74.05708),
				new google.maps.LatLng(4.67909,-74.05849),
				new google.maps.LatLng(4.668010000000001,-74.06030000000001),
				new google.maps.LatLng(4.65505,-74.06266000000001),
				new google.maps.LatLng(4.65312,-74.06382)
			];

			domiciliosZone = new google.maps.Polygon({
				paths: zoneCoords,
				strokeColor: "#FF0000",
				strokeOpacity: 0.5,
				strokeWeight: 2,
				fillColor: "#FF0000",
				fillOpacity: 0.3
			});

			domiciliosZone.setMap(map); 
});
