// JavaScript Document

$(document).ready(function(){
	$("a.toggle").next("ul").hide();

	$("a.toggle").toggle(
		function(){
			//$("a.toggle").next("ul").hide("fast");
			$(this).next("ul").show("fast");
		},
		function(){
			$(this).next("ul").hide("fast");
		}
	);
});