The solution below is intended to slide down the groupDiv displaying div1 and enough space for
You can easily disable your links while animation is running
$('a').click(function () { if ($(':animated').length) { return false; } });
You can of course replace the $('a') selector to match only some of the links.
$('a')