//Cufon.replace('#nav a',{fontFamily: 'univers-light',hover:true});
Cufon.replace('h1,h2,.meer,.titel .item-date span',{fontFamily: 'univers',hover:true});


jQuery(document).ready(function($) {

$(".mailme").defuscate(); 

$("#films a").hover(
  function () {
    $(this).find('span').addClass('hover');
  },
  function () {
    $(this).find('span').removeClass('hover');
  }
);

$('.home #films .item:last .item-content').addClass('last');
$(".item-content p:empty").remove();

var theLoc = $('#films .inner').position().top;
$(window).scroll(function() {
    if(theLoc >= $(window).scrollTop()) {
        if($('#films .inner').hasClass('fixed')) {
            $('#films .inner').removeClass('fixed');
        }
    } else { 
        if(!$('#films .inner').hasClass('fixed')) {
            $('#films .inner').addClass('fixed');
        }
    }
});

});
