/*jQuery( function() {
  if (!themeDisplay.isStateMaximized()) {
  jQuery('.portlet').each(function(){
    var $portlet = jQuery(this);

    $portlet.find(".show-btn:first").click(function() {
        $portlet.find('.portlet-topper:first').show("slide", 500);
        $portlet.find(".n5actions:first").show();
        jQuery(this).hide();
    });

    $portlet.find(".portlet-topper > .portlet-icons > .hide-btn:first").click(function() {
      $portlet.find('.portlet-topper:first').hide("slide", 500);
        $portlet.find(".n5actions:first").hide();
      setTimeout(function(){ $portlet.find(".show-btn:first").show(); }, 1000);
    });

    jQuery(".portlet").mouseover(function(){
      var $portlet = jQuery(this);
      $portlet.find(".show-btn").addClass("visible");
    }).mouseout(function(){
      var $portlet = jQuery(this);
      $portlet.find(".show-btn").removeClass("visible");
    });

    $portlet.find('.portlet-topper').hide();
  });
}
else {
  jQuery('.portlet').each(function(){
    var $portlet = jQuery(this);
    $portlet.find('.portlet-topper').show();
    
  });
}
});

*/

