$(document).ready(function () {
    var box = $('.app\\/home\\/news .home-box');
    box.find('.switch>a').click(function (e) {
        e.preventDefault();
        if ($(this).hasClass('news'))
        {
            $(this).addClass('news-active active');
            $(this).siblings().removeClass('events-active active');
            box.find('.view-all>a.news').addClass('news-active active');
            box.find('.view-all>a.events').removeClass('events-active active');
        }
        else
        {
            $(this).addClass('events-active active');
            $(this).siblings().removeClass('news-active active');
            box.find('.view-all>a.events').addClass('events-active active');
            box.find('.view-all>a.news').removeClass('news-active active');
        }
        var panel = $($(this).attr('href'));
        box.find('.panel').removeClass('active-panel');
        panel.addClass('active-panel');
    });
});
