jQuery( function($) { 
   /*$(".menu_icoon").bind("mouseover", function(event) {
        //$(".menu_paginas").hide();
        $(".menu_icoon").fadeOut();
        //$(this).hide();
        //$(this).prev().fadeIn();
        $(this).fadeIn();
   });*/
   $(".menu_icoon").bind("mouseover", function(event) {
        //voorkom dat er gefaded wordt op een alreeds geopend element
        if ($(this).prev().css("display") != "block") {
            var IE = false;
            if (IE) {
                $(".menu_paginas").not(this).hide();
                $(this).prev().show();
            } else {
                $(".menu_paginas").not(this).slideUp();
                $(this).prev().slideDown();
            }
        }
   });
});

