﻿// JavaScript Document
$(document).ready(function() {

    $.swapImage(".swapImage");    


$("#menuindex01").hover(function() {
$("#informatieindex").html("<p>Informatie</p>");
});
$("#menuindex01").mouseleave(function() {
$("#informatieindex").html("<p>&nbsp;</p>");
});

$("#menuindex02").hover(function() {
$("#informatieindex").html("<p>Overzicht beelden</p>");
});
$("#menuindex02").mouseleave(function() {
$("#informatieindex").html("<p>&nbsp;</p>");
});

$("#menuindex03").hover(function() {
$("#informatieindex").html("<p>Contact</p>");
});
$("#menuindex03").mouseleave(function() {
$("#informatieindex").html("<p>&nbsp;</p>");
});

$("#menuindex04").hover(function() {
$("#informatieindex").html("<p>e-Mail</p>");
});
$("#menuindex04").mouseleave(function() {
$("#informatieindex").html("<p>&nbsp;</p>");
});

$("#menuindex05").hover(function() {
$("#informatieindex").html("<p>Brons - Landschappen</p>");
});
$("#menuindex05").mouseleave(function() {
$("#informatieindex").html("<p>&nbsp;</p>");
});

$("#menuindex06").hover(function() {
$("#informatieindex").html("<p>Brons - Bouwsels</p>");
});
$("#menuindex06").mouseleave(function() {
$("#informatieindex").html("<p>&nbsp;</p>");
});

$("#menuindex07").hover(function() {
$("#informatieindex").html("<p>Brons - Schalen</p>");
});
$("#menuindex07").mouseleave(function() {
$("#informatieindex").html("<p>&nbsp;</p>");
});

$("#menuindex08").hover(function() {
$("#informatieindex").html("<p>Brons - Opdrachten</p>");
});
$("#menuindex08").mouseleave(function() {
$("#informatieindex").html("<p>&nbsp;</p>");
});

$("#menuindex09").hover(function() {
$("#informatieindex").html("<p>Info - Toelichting</p>");
});
$("#menuindex09").mouseleave(function() {
$("#informatieindex").html("<p>&nbsp;</p>");
});

$("#menuindex10").hover(function() {
$("#informatieindex").html("<p>Info - Exposities</p>");
});
$("#menuindex10").mouseleave(function() {
$("#informatieindex").html("<p>&nbsp;</p>");
});

$("#menuindex11").hover(function() {
$("#informatieindex").html("<p>Info - Kunstbeurzen</p>");
});
$("#menuindex11").mouseleave(function() {
$("#informatieindex").html("<p>&nbsp;</p>");
});

$("#menuindex12").hover(function() {
$("#informatieindex").html("<p>Info - Galeries</p>");
});
$("#menuindex12").mouseleave(function() {
$("#informatieindex").html("<p>&nbsp;</p>");
});

});
