
    // vamoose routes

routeFunctions.push(vamooseGetRoutes);
function vamooseGetRoutes() {

    var vamoose = new Operator('Vamoose Bus', 'www.vamoosebus.com', 'vamoose.gif', '4.0', 'http://www.yelp.com/biz/vamoose-bus-new-york', true, false, false);

    var newYorkPenn = new Location('Penn Station, New York, NY', 'http://maps.google.com/?q=' + encodeURIComponent('31st Street and 7th Avenue, New York, NY 10001'), NEW_YORK_PENN);
    var washingtonBethesda = new Location('Downtown, Bethesda, MD', 'http://maps.google.com/?q=' + encodeURIComponent('7490 Waverly Street, Bethesda, MD 20814'), WASHINGTON_BETHESDA);
    var washingtonRosslyn = new Location('Rosslyn, Arlington, VA', 'http://maps.google.com/?q=' + encodeURIComponent('1801 N Lynn Street, Arlington, VA 22209'), WASHINGTON_ROSSLYN);

    var routes = new Array();

    routes.push(new Route(vamoose, newYorkPenn, washingtonBethesda));
    routes.push(new Route(vamoose, newYorkPenn, washingtonRosslyn));

    routes.push(new Route(vamoose, washingtonBethesda, newYorkPenn));

    routes.push(new Route(vamoose, washingtonRosslyn, newYorkPenn));

    return routes;
}




