﻿$(document).ready(function () {
    $('ul#navigation').supersubs({
        minWidth: 0,
        maxWidth: 27,
        extraWidth: 0
    }).superfish();

    $("#tabs").tabs();
});
function logout(path, cookie) {
    var service = HCAjax({
        AjaxWebMethod: "/WebServices/UtilityService.asmx/logout",
        pushData: JSON.stringify({_cookie : cookie}),
        bindFunc: function (msg) {
            if (msg.d === null) {
                window.location = path;
            }
            else
                window.location = '/';
        }
    });


}

