
function gmap_start() {
    if (!GBrowserIsCompatible()) return;

    var map = new GMap2($('corridor_map'));
    map.addControl(new GSmallMapControl());
    //map.setMapType(G_SATELLITE_MAP);
    map.setCenter(new GLatLng(32.789151,-79.947338), 13);
    var universityPoints = [
        new GLatLng(32.789314,-79.951439),
        new GLatLng(32.790684,-79.950302),
        new GLatLng(32.792721,-79.949036),
        new GLatLng(32.793587,-79.948067),
        new GLatLng(32.795376,-79.945602),
        new GLatLng(32.796474,-79.944351),
        new GLatLng(32.795067,-79.942879),
        new GLatLng(32.796024,-79.940536),
        new GLatLng(32.783253,-79.931908),
        new GLatLng(32.774719,-79.930794),
        new GLatLng(32.774323,-79.934380),
        new GLatLng(32.776142,-79.934631),
        new GLatLng(32.776054,-79.935791),
        new GLatLng(32.779877,-79.936287),
        new GLatLng(32.780148,-79.936760),
        new GLatLng(32.783306,-79.938522),
        new GLatLng(32.782730,-79.939957),
        new GLatLng(32.784119,-79.940834),
        new GLatLng(32.782169,-79.948280),
        new GLatLng(32.780743,-79.947701),
        new GLatLng(32.778561,-79.947060),
        new GLatLng(32.778145,-79.947876),
        new GLatLng(32.780079,-79.951462),
        new GLatLng(32.780743,-79.954422),
        new GLatLng(32.785686,-79.956802),
        new GLatLng(32.784733,-79.958344),
        new GLatLng(32.786770,-79.959526),
        new GLatLng(32.788536,-79.962250),
        new GLatLng(32.790955,-79.967140),
        new GLatLng(32.792164,-79.968712),
        new GLatLng(32.797501,-79.967979),
        new GLatLng(32.801327,-79.967056),
        new GLatLng(32.803455,-79.966736),
        new GLatLng(32.804752,-79.960403),
        new GLatLng(32.800369,-79.958542),
        new GLatLng(32.799953,-79.959229),
        new GLatLng(32.799648,-79.959373),
        new GLatLng(32.797234,-79.958046),
        new GLatLng(32.796726,-79.958153),
        new GLatLng(32.794510,-79.956612),
        new GLatLng(32.794094,-79.957382),
        new GLatLng(32.786934,-79.954224),
        new GLatLng(32.788086,-79.951797),
        new GLatLng(32.788429,-79.951546),
        new GLatLng(32.789314,-79.951439)
    ];
    var university = new GPolygon(universityPoints, "#0000ff", 2, 0.5, "#0000ff", 0.30);
    map.addOverlay(university);

    var geocoder = new GClientGeocoder();
    var icoCompany = new GIcon(G_DEFAULT_ICON);
    icoCompany.image = '/images/pegs/peg_member.png';
    var compMarkerOptions = {icon:icoCompany};

    addMarker("<a href='/participate/members/?s=0&comp=284'>BizBuzz Search</a>", 32.793022, -79.958443, map, compMarkerOptions);
addMarker("<a href='/participate/members/?s=0&comp=200'>BlueKey, Inc.</a>", 32.777100, -79.933128, map, compMarkerOptions);
addMarker("<a href='/participate/members/?s=0&comp=35'>Dockview Productions</a>", 32.790661, -79.939919, map, compMarkerOptions);
addMarker("<a href='/participate/members/?s=0&comp=43'>InfoArch</a>", 32.871761, -79.776848, map, compMarkerOptions);
addMarker("<a href='/participate/members/?s=0&comp=144'>JSJ Pharmaceuticals</a>", 32.777603, -79.926933, map, compMarkerOptions);
addMarker("<a href='/participate/members/?s=0&comp=73'>Slant Media</a>", 32.781925, -79.934090, map, compMarkerOptions);

    var icoProperty = new GIcon(G_DEFAULT_ICON);
    icoProperty.image = '/images/pegs/peg_property.png';
    var propMarkerOptions = {icon:icoProperty};

    addMarker("<a href='/initiatives/properties.php?prop=67'>151 Meeting St.</a>", 32.779129, -79.931732, map, propMarkerOptions);
addMarker("<a href='/initiatives/properties.php?prop=65'>34 Radcliffe St.</a>", 32.788258, -79.941116, map, propMarkerOptions);
addMarker("<a href='/initiatives/properties.php?prop=68'>635 Rutledge Avenue</a>", 32.799213, -79.951530, map, propMarkerOptions);
}