// JavaScript Document
            $(function() {
                $('#navigation a').stop().animate({'marginLeft':'-140px'},1000); /*-85 1000*/
                $('#navigation > li').hover(
                    function () {
                        $('a',$(this)).stop().animate({'marginLeft':'-2px'},200); /*-2 300*/
                    },
                    function () {
                        $('a',$(this)).stop().animate({'marginLeft':'-140px'},1000); /*-140 1250*/
                    }
                );
            });
