﻿
         $(function() {
             $('#accordion > li').hover(
                    function() {
                        var $this = $(this);
                        $this.stop().animate({ 'width': '145px' }, 500);
                        $('.heading', $this).stop(true, true).fadeOut();
                        $('.bgDescription', $this).stop(true, true).slideDown(500);
                        $('.description', $this).stop(true, true).fadeIn();
                    },
                    function() {
                        var $this = $(this);
                        $this.stop().animate({ 'width': '70px' }, 1000);
                        $('.heading', $this).stop(true, true).fadeIn();
                        $('.description', $this).stop(true, true).fadeOut(500);
                        $('.bgDescription', $this).stop(true, true).slideUp(700);
                    }
                );
         });
         function Start() {
             $(document).ready(function() {
                 $('#accordion > li').each(function() {
                     var $this = $(this);
                     $this.stop().animate({ 'width': '145px' }, 1000);
                     $('.heading', $this).stop(true, true).fadeOut();
                     $('.bgDescription', $this).stop(true, true).slideDown(500);
                     $('.description', $this).stop(true, true).fadeIn();
                     ////////////


                     setInterval("stop()", 3000);



                 }
						)

             });
         }

         function stop() {
             $(document).ready(function() {
                 $('#accordion > li').each(function() {
                     var $this = $(this);
                     $this.stop().animate({ 'width': '70px' }, 1000);
                     $('.heading', $this).stop(true, true).fadeIn();
                     $('.description', $this).stop(true, true).fadeOut(500);
                     $('.bgDescription', $this).stop(true, true).slideUp(700);





                 }
						)

             });
         }
        
