$(document).ready(function()
{ 
		
	$("ul.second").hide();
	$("ul.third").hide();

	$("ul.first li").hover(
      function () {
		$(this).addClass("visited");
		$(this).children().next().show();
      }, 
      function () {
		$(this).removeClass("visited");
       $(this).children().next().hide();
      }
    );

	$("li.dropdown_hoofd").click(function () {

		$(".dropdown_content").each(function ()
		 {
			$(this).hide();
		 });

		 $(".dropdown_hoofd_visited").each(function ()
		 {
			$(this).removeClass("dropdown_hoofd_visited");
			$(this).addClass("dropdown_hoofd");
		 });

		$(this).addClass("dropdown_hoofd_visited");
		$(this).removeClass("dropdown_hoofd");

		$(this).children().show();
	});



});
