// Google Map Settings for Bardine Meats Map and Directions Page

//<![CDATA[

	function onLoad() {
	  // The basics.
	  //
	  // Creates a map and centers it on Bardine Meats - Crabtree PA.
	  
	  if (GBrowserIsCompatible()) {
		var map = new GMap(document.getElementById("map"));
		// Add Zoom and Navigation Controls
		map.addControl(new GSmallMapControl());
		// Add Map Type Control - Map - Satellite - Hybrid
        map.addControl(new GMapTypeControl());
		// Map Co-ordinates Latitude and Longitude
		map.centerAndZoom(new GPoint(-79.474, 40.365), 4);
		// Add Marker Overlay
        var point = new GPoint(-79.474, 40.365);
        var marker = new GMarker(point);
        map.addOverlay(marker);
		// Marker Message
        var html = "<table width='200' border='0' cellspacing='0' cellpadding='0'><tr><td><span class='v10blk'>Bardine\'s Country Smokehouse<br>224 Bardine Road<br>Crabtree, PA 15624<br>724.837.7089<br><br>We look forward to your visit!</span></td></tr></table>";
        GEvent.addListener(marker, 'click', function() {
	    marker.openInfoWindowHtml(html);
        });

	}
}
	//]]>