﻿//don't run these scripts when logged in to OW
if (typeof OneWeb.Admin === "undefined") {
    // perform JavaScript after the document is scriptable.
    $(document).ready(function() {
        //init js scrollbar
        $('.newsevents').jScrollPane();
        // setup tabs switching
        $("#ui-tabs").tabs({ fx: { opacity: "toggle"} });
        //toggle quick links
        $("#QuickMenu").click(function() {
            $(this).toggleClass('current');
            $(this).next("#ql_links").slideToggle(300);
        });
    });
} else {
    $(document).ready(function() {
        // setup elements for ow admin mode if needed
    });
}

