function showShelf(id) { $(id).show(); }

function setShelf(s) {

    if (ews && ews.Editor) {
        ews.Editor.NextLoadJavascript("showShelf('" + s + "')");
        ews.Editor.Layout();
    }
}

$(document).ready(function () {


    $('#ministry-directory a').click(function (event) {
        event.preventDefault();
        $('#index-area').slideToggle("slow", function () {
            setShelf("#index-area");
        });
    });


}); 
