$(document).ready(function () {

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

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

    $(".subpages a").each(function() {
        if(this.href == window.location) $(this).addClass("current");
    });
});

