$(document).ready(function() {
    $("div.filmitem").mouseover(
        function() {
            $(this).addClass("filmhover"); 
        }
    ).mouseout(
        function() {
            $(this).removeClass("filmhover");
        }
    ).click(
        function() {
            document.location=$(this).find('a')[0].href;
        }
    );
});


