$(document).ready(function() {

	$('#hoofdmenu li a:not(#hoofdmenu li ul li a)')
	.mouseover(function(){
		$(this).parent().stop().animate({ backgroundColor: "#DDE987" }, 250);
	})
	.mouseout(function(){
		$(this).parent().stop().animate({ backgroundColor: "#FFFFFF" }, 250);
	})
	.click(function(){
		$(this).parent().children('.menu_active').fadeIn(250); 
		$(this).parent().children('.submenu_tr').fadeIn(250);
		$('#hoofdmenu').children('li').children('a').not(this).parent().children('.menu_active').fadeOut(250);
		$('#hoofdmenu').children('li').children('a').not(this).parent().children('.submenu_tr').fadeOut(250);
	});

	$('.menu_active')
	.click(function(){
		$('#hoofdmenu').children('li').children('a').children('.menu_txt').css({ backgroundColor: "transparent" });
		$('#hoofdmenu').children('li').children('a').children('.menu_txt').stop().animate({ color: "#58585a" }, 250);
		
		$('.menu_active').fadeOut(250);
		$('#hoofdmenu').children('li').children('ul').fadeOut(250);
	});

});

function activatesub(itemnr) {
	$('#hoofdmenuitem'+itemnr).children('.menu_active').fadeIn(1); 
	$('#hoofdmenuitem'+itemnr).children('ul').fadeIn(1);
	}

