function hideHiddenFacets() {
  $('.hiddenfacet').hide();
  
  $('div.facet').each(function() {
    $('.hiddenfacet:last', this).after('<li><a class="facetshow" href="#" title="More">More&hellip;</a></li>');
    $('.facetshow', this).toggle(function() {
      $('.hiddenfacet', $(this).parent().parent()).slideDown("fast");
      $(this).attr('title', 'Less');
      $(this).html('Less&hellip;');
    }, function() {
      $('.hiddenfacet', $(this).parent().parent()).slideUp("fast");
      $(this).attr('title', 'More');
      $(this).html('More&hellip;');
    });
  });
}
