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