function GoogleMap(element)
{
	this.geocoder = new GClientGeocoder();
	this.map = new GMap2(element);
	this.active = GBrowserIsCompatible();
};

GoogleMap.prototype.loadMap = function()
{
	if(!this.active)
	{
	    document.getElementById("googleMapBrowser").style.display = "none";
	    document.getElementById("announcement").innerHTML = GoogleMap.prompts.disabled;
		return;
	}
	document.getElementById("announcement").innerHTML = GoogleMap.prompts.enabled;
	this.map.addControl(new GSmallMapControl());
	this.map.addControl(new GMapTypeControl());
	var startPoint = new GLatLng(37.381444, -122.047329);
    this.map.setCenter(startPoint, 13);
    this.map.addOverlay(new GMarker(startPoint));
};

GoogleMap.prototype.showLocation = function(name)
{
    if(!this.active)
    {
        GoogleMap.moreLocation(name);
		return;
	}
    var map = this.map;
    map.clearOverlays();
    this.geocoder.getLatLng(GoogleMap.addresses[name], function(point)
	{
		var marker = new GMarker(point);
        map.addOverlay(marker);
        map.panTo(point, 13);
        GEvent.addListener(marker, "click", function() {
            GoogleMap.moreLocation(name);
        });
    });
};

GoogleMap.moreLocation = function(name)
{
	window.open(GoogleMap.baseURL + GoogleMap.addresses[name]);
};

GoogleMap.addresses = {
    nimitz              : "545 Cheyenne Drive, Sunnyvale, CA 94087",
    challenger          : "1185 Hollenbeck Avenue, Sunnyvale, CA 94086",
    cumberland          : "824 Cumberland Dr, Sunnyvale, California 94087, USA",
    cupertinomiddle     : "1650 South Bernardo Ave., Sunnyvale CA",
    deanza              : "1150 Lime Dr, Sunnyvale, CA 94087",
    ellis				: "550 E Olive Ave, Sunnyvale, CA 94086",
    fairoaks            : "540 N Fair Oaks Ave, Sunnyvale, CA",
    gervais             : "14560 Big Basin Way, Saratoga, CA",
    serrapark           : "730 The Dalles Ave, Sunnyvale, CA 94087, USA",
    twist               : "247 E Campbell Ave, Campbell, CA",
    vargas              : "1054 Carson Drive, Sunnyvale, CA 94086",
    westvalley          : "1635 Belleville Way, Sunnyvale, CA",
    serra          		: "739 The Dalles Ave, Sunnyvale, CA",
    cherry				: "1138 Heatherstone Way, Sunnyvale, CA"
};

GoogleMap.prompts = {
    enabled             : "Click on an arrow to visualize the corresponding map, click a marker for a more detailed map.",
    disabled            : "Click on an arrow to visualize the corresponding map." 
};

GoogleMap.baseURL = "http://maps.google.com/maps?oi=map&q=";
