Показать сообщение отдельно
  #2 (permalink)  
Старый 22.11.2010, 16:50
Аспирант
Отправить личное сообщение для igrok Посмотреть профиль Найти все сообщения от igrok
 
Регистрация: 09.07.2010
Сообщений: 98

Попробуйте так:
<script type="text/javascript">
            $(function() {
                $('#accordion > li').click(
                    function () {
						var $this = $(this);
						if($this.css("width")=="115px"){
							$this.stop().animate({'width':'480px'},500);
							$('.heading',$this).stop(true,true).fadeOut();
							$('.bgDescription',$this).stop(true,true).slideDown(500);
							$('.description',$this).stop(true,true).fadeIn();
						}else{
							$this.stop().animate({'width':'115px'},1000);
							$('.heading',$this).stop(true,true).fadeIn();
							$('.description',$this).stop(true,true).fadeOut(500);
							$('.bgDescription',$this).stop(true,true).slideUp(700);
						}
                    }
                );
            });
        </script>
Ответить с цитированием