$(document).ready(function () {

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


    $('.mandatory').after('<span class="mandatory-symbol">*</span>');
    $("#manufacturers").change(function (){
        if ( $(':selected', this).attr('id') == 0 ) {
            return;
        }
        window.location = BASE_URL+'manufacturer.php?id='+$(':selected', this).attr('id');
    });

    //var $sidebar   = $("#cart-box2"),
        //$window    = $(window),
        //offset     = $sidebar.offset(),
        //topPadding = 15;

    //$window.scroll(function() {
        //if ($window.scrollTop() > offset.top) {
            //$sidebar.stop().animate({
                //marginTop: $window.scrollTop() - offset.top + topPadding
            //});
        //} else {
            //$sidebar.stop().animate({
                //marginTop: 0
            //});
        //}
    //});
    

});

