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

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


