<!-- begin
		$(document).ready(
			function(){
				$("ul .subhead").parents("li").find("ul").toggle("fast");
				$("ul .subhead").click(
					function() {
						if(this.style.clear == "both") {
							$(this).css("clear", "none");
							$(this).parents("li").find("ul").hide("slow");
						} else {
							$(this).css("clear", "both");
							$(this).parents("li").find("ul").show("slow");
						}
					}
				);
			}
		);


// End -->