$(function() {
    locale = location.pathname.split('/')[1];
    $('#css_switcher').css_switcher();
    if(locale == "en"){
      $('#calendar').calendarCreator({api_path:'/en/calendars/get', destination:'/en/news/calendar_list'});
    }else if(locale == "zh"){
      $('#calendar').calendarCreator({api_path:'/zh/calendars/get', destination:'/zh/news/calendar_list'});
    }else if(locale == "ko"){
      $('#calendar').calendarCreator({api_path:'/ko/calendars/get', destination:'/ko/news/calendar_list'});
    }else{
      $('#calendar').calendarCreator({api_path:'/calendars/get', destination:'/news/calendar_list'});
    }
});

