// Google Map Settings for Pittsburgh Furniture Rental Map and Directions Page

//<![CDATA[
    var map;
	function initialize() {
		if (GBrowserIsCompatible()) {
			map = new GMap2(document.getElementById("map_canvas"));      
			map.setCenter(new GLatLng(40.45280090837947, -80.02787947654724), 14);
			map.setMapType(G_PHYSICAL_MAP);
			map.setUIToDefault();
			
			// Add Marker Overlay
            var point = new GPoint(-80.02787947654724, 40.45280090837947);
            var marker = new GMarker(point);
            map.addOverlay(marker);
			
			// Marker Message
            var html = "<table width='200' border='0' cellspacing='0' cellpadding='0'><tr><td height='130' style='font-size: 10px; color: #000; line-height: 14px; font-size: 12px'><span style='font-weight:bold'>Pittsburgh Furniture Rental</span><br /><br />1200 Chateau St.<br />Pittsburgh, PA 15233<br /><br />(412) 321-8400<br /><br />We look forward to your visit!</td></tr></table>";
            GEvent.addListener(marker, 'click', function() {
	        marker.openInfoWindowHtml(html);
            });
          }
		}
    //]]>