<!-- All rights Reserved (c) 2005 Gossamar Computer Services, LLC

var map;
function googlemap() {
    map = new GMap(document.getElementById("map"));
    map.addControl(new GSmallMapControl());
    map.centerAndZoom(new GPoint(-120.11100, 39.29500), 8);
    
    // Create our "tiny" marker icon
	var icon = new GIcon();
	icon.image = "http://labs.google.com/ridefinder/images/mm_20_red.png";
	icon.shadow = "http://labs.google.com/ridefinder/images/mm_20_shadow.png";
	icon.iconSize = new GSize(12, 20);
	icon.shadowSize = new GSize(22, 20);
	icon.iconAnchor = new GPoint(6, 20);
	icon.infoWindowAnchor = new GPoint(5, 1);

	var point = new GPoint(-120.11100, 39.29500);
	var marker = new GMarker(point);
	map.addOverlay(marker);
    // Show this marker's index in the info window when it is clicked
	var html = "Northstar-at-Tahoe Resort";
	GEvent.addListener(marker, "click", function() {
	marker.openInfoWindowHtml(html);
	});
}
	
//-->
