(function ($) {

    $(document).ready(function(){
   
  $('.showmore').live('click', function() {
    
    var groupname = $(this).attr('data-groupname');
    $('.after_threshold'+groupname).show();
    $(this).html('');
    $(this).addClass('hidemore');
    $(this).removeClass('showmore');
  });
      
  
  $('.hidemore').live('click', function() {
   var groupname = $(this).attr('data-groupname');
    $('.after_threshold'+groupname).hide();
    $(this).html('');
    $(this).addClass('showmore');
    $(this).removeClass('hidemore');
  });
      
      
    });
   
})(jQuery);
