﻿//Controls the speed of opening the menu
$(document).ready(function(){
		$("dd").eq(0).show();
		$("dt a").click(function(){
			$("dd:visible").slideUp("slow");
			$(this).parent().next().slideDown("slow");
			return false;
		});
	});
