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

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