// code for navigation

$(document).ready(function() {
	$(".nav").ready(function() { // scan the page for any navigations		
		$("#blah").click(function(){
			$(this).children(".subNav").slideToggle("slow"); // show the sub menu
		});
		
		$(".subNav").parent().click(function(){
			$(this).children(".subNav").slideToggle("slow"); // hide the sub menu
		});
	});
});