        $(function() {
            $('#menu > li').hover(
                function () {
                    var $this = $(this);
                    $('a',$this).stop(true,true).animate({'bottom':'-0px'}, 300);
                    $('i',$this).stop(true,true).animate({'top':'-0px'}, 100);
                },
                function () {
                    var $this = $(this);
                    $('a',$this).stop(true,true).animate({'bottom':'-40px'}, 300);
                    $('i',$this).stop(true,true).animate({'top':'40px'}, 100);
                }
            );
        });
