$(document).ready(function(){
  // Fading Teasers
  $('#main-teaser').innerfade({ //init topstory teaser fading
   animationtype: 'fade',
   speed: 2000,
   timeout: 5000,
   type: 'sequence'
  });

  $('.accordion div:not(:first)').addClass('collapsed');
  $('.accordion > div').click(function() {
   if ($(this).is('.collapsed')) {
    $('.accordion div').addClass('collapsed');
    var $elm = $(this);
    var $startHeight = $elm.height();
    $elm.removeClass('collapsed');
    var $endHeight = $elm.height();
    $elm.css('height',$startHeight);
    $elm.animate({ height: $endHeight }, 400, function() { // Animation complete.
     $elm.removeAttr('style');
    });
    return false;
   }
  });
});
