
    // washington deluxe routes

routeFunctions.push(washingtonDeluxeGetRoutes);
function washingtonDeluxeGetRoutes() {

    var washingtonDeluxe = new Operator('Washington Deluxe', 'www.washny.com', 'washingtondeluxe.gif', '2.5', 'http://www.yelp.com/biz/washington-deluxe-washington', true, false, false);

    var newYorkPenn = new Location('Penn Station, New York, NY', 'http://maps.google.com/?q=' + encodeURIComponent('303 W 34th Street, New York, NY 10001'), NEW_YORK_PENN);
    var washingtonMcPherson = new Location('McPherson Square, Washington, DC', 'http://maps.google.com/?q=' + encodeURIComponent('1015 15th 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(washingtonDeluxe, newYorkPenn, washingtonMcPherson));
    routes.push(new Route(washingtonDeluxe, newYorkPenn, washingtonUnionStation));

    routes.push(new Route(washingtonDeluxe, washingtonMcPherson, newYorkPenn));
    routes.push(new Route(washingtonDeluxe, washingtonUnionStation, newYorkPenn));

    return routes;
}





