$(function() {
    $('#buttons > a > img').hover(
        function () {
            $(this).stop(true,true).animate({style: 'margin-bottom: 2px;'}, 300);
        },
        function () {
            $(this).stop(true,true).animate({style: 'margin-bottom: 0px;'}, 300);
        }
    );
});
