$(document).ready(function(){
	$("dd").hide();	
	$("dt a").click(function(){
		$("dd:visible").slideUp("slow");
		$(this).parent().next().not(":visible").slideDown("slow");
		return false;
		});
});

/*function initMenu() {

$(document).ready(function()
	{
	$("dd").hide();
	$("dt:first").show();
	$("dt a").click(function()
		{
  		var checkElement = $(this).next();
  		if((checkElement.is('dd')) && (checkElement.is(':hidden')))
  		{
  		return false;
  		}
  		if((checkElement.is('dd')) && (!checkElement.is(':visible'))) 
  		{
  		$('dd:visible').slideUp('normal');
  		checkElement.slideDown('normal');
  		return false;
  		}
		});
});


$(document).ready(function() {initMenu();});

$(document).ready(function() {
$("#menu dl").hide();
$("dt a'").click(
function() {
$(this).next().slideToggle("normal");
}
);
}
//$(document).ready(function() {initMenu();});
*/