


			$(document).ready(function(){
                $('#navigation a').stop().animate( {'marginLeft':'-120px'},300);

                $('#navigation > li').hover(
                    function ()  {
                        $('a',$(this)).stop().animate( {'marginLeft':'-22px'},200);
                    },
                    function ()  {
                        $('a',$(this)).stop().animate( {'marginLeft':'-120px'},200);
                   }
                );
            });
