function toggleDir(link) {

	$(link).parent("li").next("ul").toggle();
	
} // end function

