$(function() {
    $("a#more").click(function() {
        $("div#hidden").toggleClass("hidden");
    });
})
