﻿$(document).ready(function(){
	$("dl#maphelp dd").hide();
	$("dl#maphelp dt").click(function(){
		$("dl#maphelp dd:visible").slideUp("slow");
		$(this).next().slideDown("slow");
		return false;
	});
});