$(document).ready(function() {
    $("div.box").hide();
    $("h3 small").click(function() {
        $(this).parent().next("div.box").slideToggle("slow");
        $(this).toggleClass("close");
        return false;
    });
});
