
$(document).ready(function(){

	$('#nav-full > li').has('ul').mouseenter(function(){
	
		$('#nav-full > li > ul').hide();
		
		$(this).find('ul').eq(0).show()
		
		var hoogte = $(this).find('ul').eq(0).height() + 60;
		
		$('#nav-full').height(hoogte);
		
	
	});
	
	$('#nav-full > li').mouseleave(function(){
	
		$('#nav-full > li > ul').hide();
		
		$('#nav-full').height(0);
	
	});
    
	$('#xloginpop').click(function() {
			$('#logindiv').slideToggle("slow");
	});
});

