$(function() {
/*
 * collapsible
 */
$('.collapsible-more').click(function() {
  $(this).hide();
  $('> span', this.parentNode).show();
  return false;
});

$('.collapsible-less').click(function() {
  $('> a', this.parentNode.parentNode).show();
  $(this).parent().hide();
  return false;
});

});