$('document').ready(function(){    //animations sur roll over    $('.no_big_item').hover(        function () {            $(".big_hide",this).stop();            $(".big_hide",this).animate({                bottom: "0px"            }, 200 );        },function () {            $(".big_hide",this).stop();            $(".big_hide",this).animate({                bottom: "-100px"            }, 900 );        });    //    $('.featuredfix li').click(function(){        var prdid = $(this).attr('id');        if (prdid){            var prddest = lstprd [prdid];            location.href = prddest;        }    });        });
