/*$(document).ready(function() {
  $(".portlet").find(".portlet-subheader").prepend('<span class="ui-icon ui-icon-plus ui-icon-minus"></span>');
  $('div.portlet-content').show();

  $(".portlet-header .ui-icon").click(function() {
    $(this).toggleClass("ui-icon-minus");
    $(this).parents(".portlet").find(".portlet-content").toggle();
    $(this).parents(".portlet").find(".portlet-content").each(function(){
      $(this).find(".subportlet-content").hide();
      $(this).find(".subportlet-header .ui-icon").removeClass("ui-icon-minus");
    });
  });

  $(".subportlet").find(".subportlet-header").prepend('<span class="ui-icon ui-icon-plus"></span>');
  $(".subportlet-header .ui-icon").click(function() {
    $(this).toggleClass("ui-icon-minus");
    $(this).parents(".subportlet:first").find(".subportlet-content").toggle();
  });
  $('div.subportlet-content').hide();
});*/

  