$(document).ready(function(){
    map_initialize();
});

function map_initialize() {
    if (GBrowserIsCompatible()) {
        
//        // Create our "tiny" marker icon
//        var blueIcon = new GIcon(G_DEFAULT_ICON);
//        blueIcon.image = "/wp-content/themes/insivia/images/map-icon.png";
//                        
//        // Set up our GMarkerOptions object
//        markerOptions = { icon:blueIcon };

        
        var map = new GMap2(document.getElementById("map"));
        map.setCenter(new GLatLng(41.3844014, -81.8430848), 14);
        map.setUIToDefault();
        
        var latlng = new GLatLng(41.3844014, -81.8430848);
        map.addOverlay(new GMarker(latlng));
        map.disableScrollWheelZoom();

    }
}