$(function() {
     $('#sid a').mouseover(
        function(){
            $(this).stop()
                .animate({marginLeft:'30px'},{duration:150, queue: true})
                .animate({marginLeft:'0px'},{duration:150, queue: true});
        }
    );
});

