$(document).ready(function() {

	$("dt").click(function () {
		
		if ($(this).next().css("position") == "absolute") {
			//Clicking a dt that isn't currently selected
			
			//Hide the previously selected feature
			$("dt").removeClass("selected");
			$("dd.selected").hide();
			$("dd.selected").removeClass("selected");
			


			//Show the selected feature
			$(this).addClass("selected");
			$(this).next().addClass("selected");
			$(this).next().fadeIn("normal");

		}
		
	});

	$("dt#what").click();


});


