melst,
ок
$(function() {
var cur;
$('#accordion > li').click(
function () {
if(cur != this){
cur && $(cur).click();
cur = this;
var $this = $(this);
$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 {
cur = null;
var $this = $(this);
$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);
}
}
).eq(1).click(); // 3 2 1 0 первый блок третий
});