var $j = jQuery.noConflict();

$j('document').ready(function()
{
  $j('.more-content').hide();
  $j('.more-content').click(function(){
    var target = parseInt($j(this).attr("id").match(/more-content-(\d*)/)[1]);
    $(this).slideUp(function(){
      $("#more-link-" + target).show();
      return false;
    });
  });

  $j('.more-link').show();
  $j('.more-link').click(function(){
    var target = parseInt($j(this).attr("id").match(/more-link-(\d*)/)[1]);
    $(this).hide();
    $("#more-content-" + target).slideDown();
    return false;
  });
});
