/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */


var centerLatitude = 35.675968;
var centerLongitude = -83.719366;
var startZoom = 9;
var map;

function init()
    {
        if (GBrowserIsCompatible()) {
        map = new GMap2(document.getElementById("postcard-map"));
        map.addControl(new GSmallMapControl());
        var location = new GLatLng(centerLatitude, centerLongitude);
        map.setCenter(location, startZoom);
        var marker = new GMarker(location);
        map.addOverlay(marker);
        }
    }

window.onload = init;
window.onunload = GUnload;