jQuery(document).ready(function($) {
    $("#werk1-thumbnail").hover(
        function() {
            $('#werk1').fadeIn(1000);
        },
        function() {
            $('#werk1').fadeOut(1000);
        }
    );
    $("#werk2-thumbnail").hover(
        function() {
            $('#werk2').fadeIn(1000);
        },
        function() {
            $('#werk2').fadeOut(1000);
        }
    );
    $("#werk3-thumbnail").hover(
        function() {
            $('#werk3').fadeIn(1000);
        },
        function() {
            $('#werk3').fadeOut(1000);
        }
    );
});
