$(document).ready(function() {
    
    $(".expandable > :not(h3)").hide();
    
    $(".expandable h3").click(function() {

        if ($(this).hasClass("expanded")) {
            $(this).removeClass("expanded");
            $(this).nextUntil("h3").hide("fast");
        }
        else {
            $(this).addClass("expanded");
            $(this).nextUntil("h3").show("fast");
        }
    });

    // external links
    $("#content a[href^='http']").addClass("external").attr('target', '_blank');

});