$(document).ready(function(){

  //Nur verstecken, wenn nicht auf noseasons Seite
  if( $(".noseasons").text() == '' )
  {
    $(".noseasonsgroup").hide();
  }
  //Nur verstecken, wenn nicht auf noseasons Seite
  if( $(".awards").text() == '' )
  {
    $(".awardsgroup").hide();
  }

  $(".subhead").click(function(){
    $(this).parents("li").next(".subnav").slideToggle();
    return false;
  });

  $(".subsubhead").click(function(){
    $(this).parents("li").next(".subsubnav").slideToggle();
    return false;
  });
});
