// code for navigatie

$(document).ready(function() {
	$(".nav").ready(function() { // scan the page for any navigations
		
		$(".sub").parent().mouseover(function(){
			$(this).children(".sub").show(); // show the sub menu
		});
		
		$(".sub").parent().mouseout(function(){
			$(this).children(".sub").hide(); // hide the sub menu
		});
	});
	});
	/*
$(document).ready(
	function() {
	$(".nav > .sub").siblings().hide();
	
	$(".nav > .sub").click(function() {
		$(".nav > .sub").siblings().hide();
		$(this).siblings().show();
	});
	}
);
*/