// code for navigation

$(document).ready(function() {
	$(".nav").ready(function() { // scan the page for any navigations
		$(".sub").toggle(); // hide the sub menus
		
		$(".sub").parent().mouseover(function(){
			$(this).children(".sub").toggle(); // show the sub menu
		});
		
		$(".sub").parent().mouseout(function(){
			$(this).children(".sub").toggle(); // hide the sub menu
		});
	});
});
