//<![CDATA[		function load() {      		if (GBrowserIsCompatible()) {        		var map = new GMap2(document.getElementById("map"));								// Map Center				var center = new GLatLng(37.808993,-122.269758);				map.setCenter(center, 15);								// Pan / Zoom control				map.addControl(new GLargeMapControl());        						// Local Search Control				var lsc = new google.maps.LocalSearch();				var bottomRight = new GControlPosition(G_ANCHOR_BOTTOM_RIGHT, new GSize(10,10));				map.addControl(new google.maps.LocalSearch(), bottomRight);								// Uptown marker				var uptown = new GMarker(center);				map.addOverlay(uptown);								//Thomas Berkley overlay				var berkleyCenter = new GLatLng(37.809699, -122.272189);				var berkley = new GPolygon([					new GLatLng(37.810055, -122.272983),					new GLatLng(37.809801, -122.271448),					new GLatLng(37.809335, -122.271577),					new GLatLng(37.809547, -122.272822),					new GLatLng(37.810055, -122.272983)				], "#558C97", 1, 1, "#558C97", 0.5);				map.addOverlay(berkley);								//Telegraph overlay				var telegraphCenter = new GLatLng(37.809453, -122.270612);				var telegraph = new GPolygon([					new GLatLng(37.809760, -122.271255),					new GLatLng(37.809521, -122.269710),					new GLatLng(37.809055, -122.269818),					new GLatLng(37.809292, -122.271395),					new GLatLng(37.809760, -122.271255)				], "#BA684D", 1, 1, "#BA684D", 0.5);				map.addOverlay(telegraph);								//The William overlay				var williamCenter = new GLatLng(37.809047, -122.272081);				var william = new GPolygon([					new GLatLng(37.809419, -122.272779),					new GLatLng(37.809208, -122.271599),					new GLatLng(37.808699, -122.271749),					new GLatLng(37.808852, -122.272596),					new GLatLng(37.809419, -122.272779)				], "#A7B05F", 1, 1, "#A7B05F", 0.5);				map.addOverlay(william);																//The Park overlay				var parkCenter = new GLatLng(37.808877, -122.271148);				var park = new GPolygon([					new GLatLng(37.809174, -122.271416),					new GLatLng(37.809072, -122.270719),					new GLatLng(37.808563, -122.270890),					new GLatLng(37.808665, -122.271556),					new GLatLng(37.809174, -122.271416)				], "#7A9464", 1, 1, "#7A9464", 0.5);				map.addOverlay(park);								//Uptown Info Window				var uptownInfo = "<h2>The Uptown Apartments</h2>500 William Street<br/>Oakland CA. 94612<br/><br/>Get directions: <a href='http://www.google.com/maps?source=uds&daddr=500+William+Street+Oakland,+CA+(The+Uptown+Apartments)&iwstate1=dir%3Ato' target='_blank'>To here</a> - <a href='http://www.google.com/maps?source=uds&saddr=500+William+Street+Oakland,+CA+(The+Uptown+Apartments)&iwstate1=dir%3Afrom' target='_blank'>From here</a>";							map.openInfoWindowHtml(center, uptownInfo);								GEvent.addListener(uptown, "click", function() {					map.openInfoWindowHtml(center, uptownInfo);				});								//Thomas Berkley Info Window				var berkleyInfo = "<h2>The Thomas Berkley</h2><p>Traditional design meets contemporary<br/>	styling in these unique apartments<br/>in Oakland.<br/>Opening Winter 2008.</p>";								GEvent.addListener(berkley, "click", function() {					map.openInfoWindowHtml(berkleyCenter, berkleyInfo);				});								//The William Info Window				var williamInfo = "<h2>The William</h2><p>Fashionably edgy design and chic color<br/>palettes distinguish these unique<br/>apartments in Oakland.<br/>Now leasing.</p>";								GEvent.addListener(william, "click", function() {					map.openInfoWindowHtml(williamCenter, williamInfo);				});								//Thelegraph Info Window				var telegraphInfo = "<h2>The Telegraph</h2><p>These Oakland apartments offer<br/>sophisticated stylish, modern<br/>furnishings and an array of resident<br/>amenities and luxury finishes.<br/>Opening Summer 2008</p>";								GEvent.addListener(telegraph, "click", function() {					map.openInfoWindowHtml(telegraphCenter, telegraphInfo);				});								//The Park Info Window				var parkInfo = "<h2>Public Park</h2><p>Adjacent to The Uptown, the park will feature<br/>shade trees, lush landscaping and a peaceful<br/>outdoor haven for the community.</p>";								GEvent.addListener(park, "click", function() {					map.openInfoWindowHtml(parkCenter, parkInfo);				});												      		}   		 }    	//]]>
