, , . , , , " " :
$('.box').on('click', function() {
var $this = $(this),
$exp = $(".expanded-box");
function grow() {
$this.animate({
width: "200px", height: "100px"
}).addClass('expanded-box');
}
if ($exp.length > 0) {
$exp.animate({
width: "100px", height: "50px"
}, grow).removeClass("expanded-box");
} else {
grow();
}
});
: http://jsfiddle.net/PXddm/