$(function() {    $('#main_menu > li').hover(        function () {            var $this = $(this);            $('a',$this).stop(true,true).animate({                    'bottom':'-15px'                }, 300);            $('i',$this).stop(true,true).animate({                    'top':'-10px'                }, 400);        },        function () {            var $this = $(this);            $('a',$this).stop(true,true).animate({                    'bottom':'-103px'                }, 300);            $('i',$this).stop(true,true).animate({                    'top':'50px'                }, 400);        }    );});
