$(document).ready(function(){
	$("dd").hide();
	$("dd ul li a").click(function(){
		if($(this).next().is(":visible")) {
			$("li dd:visible").slideUp();	
		}else {
			$("li dd:visible").slideUp();
			$(this).next().slideDown();
		}
	});
	//use php to get name and then place the name in the dd
	$("dd[name='open']").show();
});
