﻿var webPartCategory = new (function() {
    
    this.Init = function(container) {
    jQuery("#" + container + " .categoryMore").show();
    jQuery("#" + container + " .categoryLess").hide();
    };
    
    this.ShowMore = function(container) {
        jQuery("#" + container + " .hidden").slideDown("fast");
        jQuery("#" + container + " .categoryMore").hide();
        jQuery("#" + container + " .categoryLess").show();
    };

    this.ShowLess = function(container) {
        jQuery("#" + container + " .hidden").slideUp("fast");
        jQuery("#" + container + " .categoryMore").show();
        jQuery("#" + container + " .categoryLess").hide();
    };

   
})();
