
    // fung wah routes

routeFunctions.push(fungWahGetRoutes);
function fungWahGetRoutes() {

    var fungWah = new Operator('Fung Wah', 'www.fungwahbus.com', 'fungwah.gif', '3.5', 'http://www.yelp.com/biz/fung-wah-bus-boston', true, false, false);

    var bostonSouthStation = new Location('South Station, Boston, MA', 'http://maps.google.com/?q=' + encodeURIComponent('700 Atlantic Avenue, Boston, MA 02111'), BOSTON_SOUTH_STATION);
    var newYorkChinatown = new Location('Chinatown, New York, NY', 'http://maps.google.com/?q=' + encodeURIComponent('139 Canal Street, New York, NY 10002'), NEW_YORK_CHINATOWN);

    var routes = new Array();

    routes.push(new Route(fungWah, bostonSouthStation, newYorkChinatown));

    routes.push(new Route(fungWah, newYorkChinatown, bostonSouthStation));

    return routes;
}

