$(document).ready(function () {

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

    $(".js-brands").change(function () {
        id = $(this).val();
        if (id) {
            window.location = BASE_URL + "manufacturer.php?id=" + id;
        }
    });

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

});

