  jQuery(function() {
            jQuery('#menu > li').hover(
                function () {
                    var jQuerythis = jQuery(this);
                    jQuery('a',jQuerythis).stop(true,true).animate({
                            'bottom':'-85px'
                        }, 300);
                    jQuery('i',jQuerythis).stop(true,true).animate({
                            'top':'-10px'
                        }, 400);
                },
                function () {
                    var jQuerythis = jQuery(this);
                    jQuery('a',jQuerythis).stop(true,true).animate({
                            'bottom':'-95px'
                        }, 300);
                    jQuery('i',jQuerythis).stop(true,true).animate({
                            'top':'50px'
                        }, 400);
                }
            );
        });
