$(function() {
                $('#navigation a').stop().animate({'marginLeft':'4px'},1000);
 
                $('#navigation > li').hover(
                    function () {
                        $('a',$(this)).stop().animate({'marginLeft':'-165px'},800);
                    },
                    function () {
                        $('a',$(this)).stop().animate({'marginLeft':'4px'},500);
                    }
                );
            });
