jQuery(window).resize(function() {
  jQuery("#main-table").add().css("height",jQuery(window).height());
  jQuery("#main-table").add().css("width",jQuery(window).width());
});
jQuery(document).ready(function() {
    jQuery('#main-table').attr("style","opacity:1;");
    jQuery("#main-table").add().css("height",jQuery(window).height());
    jQuery("#main-table").add().css("width",jQuery(window).width());
    jQuery('.menu .seperator').last().empty();
    
    jQuery('#'+jQuery('#menu_parent').val()+'').addClass('active');
    
    jQuery('#hover_images').children().attr('style','opacity:0.4');

    jQuery('#hover_images').children().load(function() {
        jQuery(this).animate({
        opacity: 0.0,
        }, 4000, function() {
        });
    });    
    jQuery('#hover_images').children().mouseover(function() {
        jQuery(this).animate({
        opacity: 1.0,
        }, 500, function() {
        });
    });
    jQuery('#hover_images').children().mouseout(function() {
        jQuery(this).animate({
        opacity: 0.0,
        }, 500, function() {
        });
    });

    jQuery('#expositie .extra03').mouseover(function() {
        jQuery(this).children().attr('style','color:#383838');
    });
    jQuery('#expositie .extra03').mouseout(function() {
        jQuery(this).children().attr('style','');
    });
});
