$(function() { // when the document is ready to be manipulated.
	if (GBrowserIsCompatible()) {
		var map = new GMap2(document.getElementById("myMap"));
		map.addControl(new GLargeMapControl());
		var c = new GMapTypeControl();   
		map.addControl(c);
		map.setCenter(new GLatLng(37.331719,-121.930335), 12);
		var jwayLogo = new GIcon(G_DEFAULT_ICON);
		jwayLogo.image = "/img/map_icon.png";
		jwayLogo.iconSize = new GSize(147, 140);
		jwayLogo.iconAnchor = new GPoint(70, 132);
		markerOptions = { icon:jwayLogo };
		var point = new GLatLng(37.314655, -121.97537);
		map.addOverlay(new GMarker(point, markerOptions));
	}
else {alert("Sorry, the map will not display in your browser.");}
});