function init() {
	if (GBrowserIsCompatible()) {
		var mapMountainView = new GMap2(document.getElementById("mapMountainView"));
		mapMountainView.setCenter(new GLatLng(37.435612,-122.151489), 13);
		mapMountainView.addControl(new GSmallZoomControl());
		var mapMountainViewText = document.createElement('p');
		mapMountainViewText.innerHTML = '<strong>ShareThis</strong><br />250 Cambridge Ave.<br />Palo Alto, CA<br /><a href="http://maps.google.com/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=250+Cambrige+Ave,+Palo+Alto&amp;sll=37.0625,-95.677068&amp;sspn=20.067164,76.201172&amp;ie=UTF8&amp;hq=&amp;hnear=250+Cambridge+Ave,+Palo+Alto,+Santa+Clara,+California+94306&amp;ll=37.435612,-122.151489&amp;spn=0.03912,0.14883&amp;z=13" style="color:#0000FF;text-align:left">View Larger Map</a>';
		mapMountainView.openInfoWindow(mapMountainView.getCenter(), mapMountainViewText);
	}
}

