$(function(){	
    $('div.box:not(.active)').hide();

    $('a.toggle').bind( 'click', function() {  		
        $(this.parentNode).addClass( 'justClicked' );
        $('h2.justClicked + div.box').slideToggle(500);
        $(this.parentNode).removeClass('justClicked');
        return false;
    });

});
