function pageReveal(){
 $('body').fadeIn('600');
 $('#prerender').remove();
}

$(window).bind('load', function() {
  setTimeout('pageReveal', 50)
})

Cufon.replace('.displayText,#header h1,.nav li:not(.nav li.the-film-makers),h2:not(.ir)');

$(document).ready(function(){
  $('body').addClass('scripted');
  
  $('a').not('.current a').hover(function(){
    $(this).stop().animate({opacity : 0.5});
  },function(){
    $(this).stop().animate({opacity : 1});
  })
})