            $(function() {
                $('#accordion2 > li').hover(
                    function () {
                        var $this = $(this);
                        $this.stop().animate({'width':'480px'},500);
                        $('.heading2',$this).stop(true,true).fadeOut();
                        $('.bgDescription2',$this).stop(true,true).slideDown(500);
                        $('.description2',$this).stop(true,true).fadeIn();
                    },
                    function () {
                        var $this = $(this);
                        $this.stop().animate({'width':'150px'},1000);
                        $('.heading2',$this).stop(true,true).fadeIn();
                        $('.description2',$this).stop(true,true).fadeOut(500);
                        $('.bgDescription2',$this).stop(true,true).slideUp(700);
                    }
                );
            });
