// Lien externe
$(document).ready(function() {
    $("a[href^='http://']").click(function(){
      if(($(this).attr("class"))=='internal'){
        return true;
      }
      window.open(this.href);
      return false;
    });
});

// Slide
$(document).ready(function(){$(".openCredits").click(function(){$("#credits").slideToggle("slow"); $(this).toggleClass("active"); return false; });});