// Google Maps javascript

	  function initialize() {
		var latlng = new google.maps.LatLng( -0.500, -78.730);
		var my01Latlng = new google.maps.LatLng(-0.747, -78.907);
		var myOptions = {
		  zoom: 9,
		  center: latlng,
		  mapTypeId: google.maps.MapTypeId.TERRAIN
		};
		var map = new google.maps.Map(document.getElementById("map_canvas"), myOptions); 
		
			var contentString = 
			'<div><strong>Black Sheep Inn</strong><br />85 km southwest of Quito</div>';
		
		var infowindow = new google.maps.InfoWindow({
				content: contentString,
				maxWidth: 120
			});
			
		var bsimage = 'includes/images/widgets/googlemap.overlay.bsi.png';
		var bsiname = new google.maps.Marker({
				position: my01Latlng,
				map: map,
				icon: bsimage
			});
	
		google.maps.event.addListener(bsiloc, 'click', function() {
			  infowindow.open(map,bsiloc);
				});
	
	}

