$(document).ready( function() {	$('ul.menu li').hover( function() {			$('ul', this).show();	}, function() {			$('ul', this).delay(5000).hide();	});			$('ul.layer_three ul.children').hide();	$('ul.layer_three .current_page_item ul.children').show();		$('ul.layer_three li').hover( function() {			$('ul.children', this).show();	}, function() {			$('ul.children', this).delay(5000).hide();		$('ul.layer_three .current_page_item ul.children').show();	});			// Toon/verberg login formulier als er op een link wordt gedrukt met ID login	$('a#login').click( function() { $('div.login').slideToggle('fast'); });	});
