;(function($) {
    $(document).ready(function() {
        // conference pow
        $("#conference-pow .accordion li.tab").hoverIntent(function() {
            if (!$(this).hasClass("expanded")) {
                $(this).siblings(".expanded").removeClass("expanded").find(".content-holder").hide();
                $(this).addClass("expanded").find(".content-holder").hide().fadeIn(500);
            }
        }, function() {});
    });
})(jQuery);