﻿// JScript File




function pageInit() {
    // load the javascript rollover images
    MM_preloadImages('images/menu_who_we_are2.gif','images/menu_who_we_serve2.gif','images/menu_how_we_work2.gif','images/menu_getting_started2.gif','images/menu_contact2.gif','images/menu_share_the_ride2.gif');
    
    // load the map
    if (GBrowserIsCompatible()) {
        if(document.getElementById("map") != null){
            var map = new GMap2(document.getElementById("map"));
            initMap(map);
        }
    }
}

function initMap(map) {

    // show controls
    map.addControl(new GLargeMapControl());
    
    //set center
    SetCenter(map)
    
    addPoints(map);
    
}
