$(function() {
    //set link's functionality
    $("div.expandableHeader a").attr("href", "javascript:void(0);");
    $("div.expandableHeader a").click(function () {
        //set all to default (closed)
        $(this).parent().parent().siblings().find(".expandableHeader").removeClass("open");
        $(this).parent().parent().siblings().find(".expandableList").addClass("hidden");
        
        //toggle classes (open and hidden) for these divs
        $(this).parent().toggleClass("open");
        $(this).parent().next().toggleClass("hidden");
    });
});

