$(document).ready(function () {

    $("#slider").easySlider({
        autoplayDuration: 4000,
        loop: true,
        orientation: 'fade'
    });


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

    // Move a category or page's inspiration image to above the
    // navigation bar. The first image is interpreted as the
    // inspiration image if it has the proper size.
    var first_img = $("#content p > img:first-child");
    if (first_img.width() >= 700)
        first_img.first().detach().prependTo("#inspiration");

    // Move a special page's inspiration image to above the navigation
    // bar. (A special page is e.g. the cart).
    $("#inspiration-image").detach().prependTo("#inspiration");

    // Decorate the active category
    $("#category_menu a.selected").parent("li").addClass("selected");
});

