$(document).ready(function () {

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


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

    $('#controls li a').each(function () {
        $(this).html('');
    });

    $("#manufacturerList").change(function(){
        var manufacturerId = $('#manufacturerList option:selected').val();
        document.location = BASE_URL+'manufacturer.php?id='+manufacturerId;
    });

});

