 $(document).ready(function(){
 
	$("#subnav UL LI UL").css("display","none");
	
	function fadeAll() {
		$("#subnav UL LI UL").fadeOut("fast");
		return false;
	}
 
	$("#subnav UL LI A.foo").toggle(
	  function () { fadeAll(); $(this).next().fadeIn("fast"); },
	  function () { $(this).next().fadeOut("fast"); }
	);

 });

