(function($) {
    $(document).ready(function() { 
        $(".post .actions .more a").click(function () {
		  $("#"+$(this).attr('rel')).slideToggle("slow");
		  return false;
		});
        $(".post .actions .leave a").click(function () {
		  $("#"+$(this).attr('rel')).slideToggle("slow");
		  return false;
		});
    });
})(jQuery);
