$(function() {
    $('#navigation a').stop().animate({'marginLeft':'156px', 'width':'44px'},400);

    $('#navigation > li').hover(
        function () {
            $('a',$(this)).stop().animate({'marginLeft':'0px', 'width':'200px'},400);
        },
        function () {
            $('a',$(this)).stop().animate({'marginLeft':'156px', 'width':'44px'},400);
        }
    );
});
