$(document).ready(function()
/*{
	var tijd = 200;
	
	
	$(".submenu p").css('cursor','pointer');
	//$(".submenu ul").hide();

	$(".submenu p").toggle(function()
	{		
		$(this).css({'border-bottom':'0','border-top':'1px solid #6D8CB8'});
		$(this).parent().find("ul").slideDown(tijd);
		$(this).parent().find("ul").animate({'height':'+=8px'}, tijd);
	},
	function()
	{
		$(this).parent().find("ul").animate({'height':'-=8px'}, tijd);
		$(this).parent().find("ul").slideUp(tijd);
		$(this).css({'border-bottom':'1px solid #6D8CB8','border-top':'0'});
	});
});*/


{
	var tijd = 200;
	
	
	$(".submenu p").css('cursor','pointer');
	//$(".submenu ul").hide();

	$(".submenu p").toggle(function()
	{		
		$(this).parent().find("ul").animate({'height':'-=0px'}, tijd);
		$(this).parent().find("ul").slideUp(tijd);
		$(this).css({'border-bottom':'1px solid #6D8CB8','border-top':'0'});
	},
	function()
	{
		$(this).css({'border-bottom':'0','border-top':'1px solid #6D8CB8'});
		$(this).parent().find("ul").slideDown(tijd);
		$(this).parent().find("ul").animate({'height':'+=0px'}, tijd);
	});
});



