jQuery(function(){
   
    jQuery('#subNav:empty').remove();

    var inAnimation=false;
    
    jQuery('.weitereStandorteOuter').hide();
    jQuery('.weitereStandorteClickable').click(function() {
        if(inAnimation)
        {
            return;
        }
        inAnimation = true;
       jQuery(this).parent().children('.weitereStandorteOuter').slideToggle('fast',function() {
           inAnimation = false;
       });
    });

});
