$(function(){
    $(".booklet_link a").click(function(){        
        fadeOutBooklet($(this).parent().parent().parent());
        $(this).blur();
        return false;
    });
    $(".booklet_link_container").click(function(){
        fadeOutBooklet($(this).parent());
    });
    function fadeOutBooklet(p){
        $(".booklet_selected").find(".booklet_title span, .booklet_contents ol").fadeOut("fast", function(){
            $(".booklet_selected").removeClass("booklet_selected").addClass("booklet_off");
            p.find(".booklet_title span, .booklet_contents ol").fadeIn("slow");
            p.removeClass("booklet_off");
            p.addClass("booklet_selected");
        });
    }
});