// 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").stop().show(); // show the sub menu
		});
		
		$(".sub").parent().mouseout(function(){
			// $(this).children(".sub").stop().hide(); // hide the sub menu
		});
	});
	
	
	
	
	$("#nav").ready(function() { // scan the page for any navigations

		
		$("#nav ul").parent().mouseover(function(){
			$(this).children("ul").show(); // show the sub menu
		});
		
		$("#nav ul").parent().mouseout(function(){
			$(this).children("ul").hide(); // hide the sub menu
		});
	});
	
	
	

});