$(function() {
    // assign a click event to the h1 element
    $("#groot_beeld h1").hover(function() {

        // perform fading out
        $(this).fadeOut(500);

    });
});
