$(document).ready(function() {
	
	var n = $("li.showable").length + 1;
	var height = n*28; // 28 is de hoogte van 1 element
	$("<style type='text/css'>.menuHeight{height:" + height + "px;}</style>").appendTo("head");
	$("ul.menu").addClass("menuHeight");

	$('li.showable:has(ul)').click(function(e) {
		if($(this).hasClass('current')) {
			location.href = e.target; 
		} else {
			$(this).siblings().hide('slow');
			$(this).addClass('current');
			$('li.showable ul').removeClass('hide');
			e.preventDefault();
		}
	});

	$('ul.menu').hover(function() {
		/*Niks doen, het gaat erom als we weggaan*/
	}, function() {
		/*Menu weer terug toveren*/
		$('li.showable ul').addClass('hide');
		$('li.showable').siblings().show('slow');
		$('li.showable').removeClass('current');
	});
});
