$(function() {
                var d=300;
                $('#navigation2 a').each(function(){
                    $(this).stop().animate({
                        'marginTop':'-130px'
                    },d+=150);
                });

                $('#navigation2 > li').hover(
                function () {
                    $('a',$(this)).stop().animate({
                        'marginTop':'-20px'
                    },500);
                },
                function () {
                    $('a',$(this)).stop().animate({
                        'marginTop':'-130px'
                    },500);
                }
            );
            });
