var jQ			= jQuery.noConflict();
            jQ(function() {
                var d=300;
                jQ('#navcontainer1 a').each(function(){
                    jQ(this).stop().animate({
                        'marginTop':'-80px'
                    },d+=150);
                });

                jQ('#navcontainer1 li').hover(
                function () {
                    jQ('a',jQ(this)).stop().animate({
                        'marginTop':'-20px'
                    },200);
                },
                function () {
                    jQ('a',jQ(this)).stop().animate({
                        'marginTop':'-80px'
                    },200);
                }
            );
            });


   