
    // lucky star routes

routeFunctions.push(luckyStarGetRoutes);
function luckyStarGetRoutes() {

    var luckyStar = new Operator('Lucky Star', 'www.luckystarbus.com', 'luckystar.gif', '3.0', 'http://www.yelp.com/biz/lucky-star-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('Chrystie Street and Hester Street, New York, NY 10002'), NEW_YORK_CHINATOWN);

    var routes = new Array();

    routes.push(new Route(luckyStar, bostonSouthStation, newYorkChinatown));

    routes.push(new Route(luckyStar, newYorkChinatown, bostonSouthStation));

    return routes;
}




