	// JavaScript Document
	//<![CDATA[
	
	var map = new GMap(document.getElementById("map"));
	map.addControl(new GLargeMapControl());
	map.addControl(new GMapTypeControl());
	map.addControl(new GScaleControl());
	map.setCenter(new GLatLng(26.904008,-82.282448),12, G_NORMAL_MAP)

	// Creates a marker whose info window displays the given number
	function createMarker(point, number)
	{
	var marker = new GMarker(point);
	// Show this markers index in the info window when it is clicked
	var html = number;
	GEvent.addListener(marker, "click", function() {marker.openInfoWindowHtml(html);});
	return marker;
	};
		
	var point = new GLatLng(26.910207,-82.276869);
	var marker = createMarker(point, 'Our Villa Location - 33 pinehurst place, rotunda west, englewood, florida, 33947');
	map.addOverlay(marker);

	//]]>
