jQuery(document).ready(function() {
    $('area.mapmap').hover(function() {
        // on hovering check wich area and thus wich picture to show
        var fade;
        if (this.id == "part") {
            fade = $("#particulier");
        } else {
            fade = $("#zakelijk");
        }
        // if the element is currently being animated (to fadeOut)...
        if (fade.is(':animated')) {
            // ...stop the current animation, and fade it to 1 from current position
            fade.stop().fadeTo(1000, 1);
        } else {
            fade.fadeIn(1000);
        }
    }, function() {
        var fade;
        if (this.id == "part") {
            fade = $("#particulier");
        } else {
            fade = $("#zakelijk");
        }
        if (fade.is(':animated')) {
            fade.stop().fadeTo(1000, 0);
        } else {
            fade.fadeOut(1000);
        }
    });
    initMenus();
    $("#contactform").validate();   

});
