
    // dc2ny routes

routeFunctions.push(dc2nyGetRoutes);
function dc2nyGetRoutes() {

    var dc2ny = new Operator('DC2NY', 'www.dc2ny.com', 'dc2ny.gif', '3.5', 'http://www.yelp.com/biz/dc2ny-bus-washington', true, true, true);

    var newYorkPenn = new Location('Penn Station, New York, NY', 'http://maps.google.com/?q=' + encodeURIComponent('W 33rd Street and 7th Avenue, New York, NY 10001'), NEW_YORK_PENN);
    var washingtonDupont = new Location('Dupont Circle, Washington, DC', 'http://maps.google.com/?q=' + encodeURIComponent('20th Street and Massachusetts Avenue NW, Washington, DC 20036'), WASHINGTON_DUPONT);
    var washingtonMcPherson = new Location('McPherson Square, Washington, DC', 'http://maps.google.com/?q=' + encodeURIComponent('815 14th Street NW, Washington, DC 20005'), WASHINGTON_MCPHERSON);
    var washingtonUnionStation = new Location('Union Station, Washington, DC', 'http://maps.google.com/?q=' + encodeURIComponent('38.89689477421493,-77.00641393661499'), WASHINGTON_UNION_STATION);

    var routes = new Array();

    routes.push(new Route(dc2ny, newYorkPenn, washingtonMcPherson));
    routes.push(new Route(dc2ny, newYorkPenn, washingtonDupont));
    routes.push(new Route(dc2ny, newYorkPenn, washingtonUnionStation));

    routes.push(new Route(dc2ny, washingtonDupont, newYorkPenn));

    routes.push(new Route(dc2ny, washingtonMcPherson, newYorkPenn));

    routes.push(new Route(dc2ny, washingtonUnionStation, newYorkPenn));

    return routes;
}

