$(function() {
    $('#accordion > li').hover(
        function () {
            var $this = $(this);
            $this.stop().animate({'height':'270px'},500);
            
        },
        function () {
            var $this = $(this);
            $this.stop().animate({'height':'57px'},1000);
            
        }
    );
});
