$(document).ready(function() {
    $('.bt').hover(
        function(){
            $(this).stop().animate({
                backgroundPosition: '0 0px'
            }, {
                duration:200
            });
        }
        , function(){
            $(this).stop().animate({
                backgroundPosition: '0 -90px'
            }, {
                duration:200
            });
        }
        );
});
