// Accordian-style menu: written in JQuery



	$(document).ready(function(){
			$("dd:not(:first)").hide();
			 
			$("dt a").hoverIntent({
				sensitivity: 3, 
				interval: 350, 
				over: makeTall, 
				timeout: 500, 
				out: makeShort
			});
		}); // close document.ready
	
		function makeTall(){  
			$("dd:visible").slideUp(700);
			$(this).parent().next().fadeIn(500);
			// $(this).parent().next().slideDown("slow");
			}
			
		function makeShort(){}