$(document).ready(function()
{
  // News ticker
  $(".newsTitles:last").newsticker();

  // Inscription toggle on lesson pages
  $(".collapsableContent").hide();
  $(".collapsable").addClass("hidden");
  $(".collapsable h3 a").click(function(){
    var target = this.href.split("#");
    $("#"+target[1]).slideToggle("normal", function(){
      var visible = $(this).is(":visible");
      $(this).closest(".collapsable")
        .toggleClass("hidden", !visible)
        .toggleClass("visible", visible)
        ;
    });
    return false;
  });

  // Picture rotator
  if ("undefined" !== typeof jQuery.fn.innerfade)
  {
    $("ul.pictures").innerfade({
      containerheight: "300px"
    });
  }
});
