
/* - ++resource++javascripts/main.js - */
(function($) {

    function mostViewedPortletTabs() {
        if ($('.portletMostViewedPortlet')[0] !== undefined) {
            $("ul.mostViewedTabs").tabs("div.mostViewedPanes > div");
            $(".mostViewedPanes h4").css("display","none");
        }
    };

    $(function() {
       mostViewedPortletTabs();
    });
})(jQuery);

