есть меню акордион, изображения раскрываются при наведении
| Код | $(function() { $('#accordion > li').hover( function () { var $this = $(this); $this.stop().animate({'width':'354px'},1000); $('.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':'73px'},1000); $('.heading',$this).stop(true,true).fadeIn(); $('.description',$this).stop(true,true).fadeOut(500); $('.bgDescription',$this).stop(true,true).slideUp(700); } ); });
|
как сделать чтобы при загрузке странички уже один пункт меню был открыт? |