$(document).ready(function () {

    $("#slider").easySlider({
        auto: true,
        continuous: true,
        numeric: false,
        pause: 4000
    });


    $('.mandatory').after('<span class="mandatory-symbol">*</span>');

    $('#category_menu').treeview({
        persist: "cookie",
        cookieId: "navigationtree",
        collapsed: true,
        unique: true
    });
    $('#category_menu a').click(function() {
        $(this).siblings('.hitarea').click();
        if ($(this).parent().hasClass('expandable') || $(this).parent().hasClass('collapsable'))
        return false;
    });

});

