﻿function showShelf(id) { $(id).show(); }

function setShelf(s) {

    if (ews && ews.Editor) {
        ews.Editor.NextLoadJavascript("showShelf('" + s + "')");
        ews.Editor.Layout();
    }
}

$(document).ready(function () {


    $('#quicklinks-link').click(function (event) {
        event.preventDefault();
        $(this).parent().parent().toggleClass("selected");
        $('#index-area').slideToggle("slow", function () {
            setShelf("#index-area");
        });
    });


}); 
