// Global easing fx

jQuery.easing.def = "easeInOutExpo"; 


// Common user actions

$(document).ready(function(){

  $('[rel="open"]').menuOpener();
  $('input:text').placeholder();
  
  $('#credits').hover( function(){
    $this = $(this);
    $this.children('.slider').slideUp(250, function() {
      $this.children('.hidden').fadeIn(300);
    });
  }, function(){
    $this = $(this);
    $this.children('.hidden').fadeOut(150, function() {
      $this.children('.slider').fadeIn(150);
    });
  });

});

