$(document).ready(function(){
// hide all but first
	$("ul li ul.expand").hide();

	//$("ul li ul.expand").click(function(){
	$("ul li a.expando").click(function(){
	
		// Close open list
		//$("ul li ul").removeClass('') 
		

		//$(this).next().toggleClass( openClass )
		$(this).toggleClass( openClass )

		if (!$(this).hasClass(openClass))		{
			$(this).next().slideUp("slow")
		}	else	{
			$(this).next().slideDown("slow")
		}


		//$(this).parent().next().slideDown("slow");
		//$(this).next().slideDown("slow")

		return false;

	});
});