// JavaScript Document
$(document).ready(function() {
	$("dd:not(:last)").hide();
	$("dt a.expand").click(function(){
	$("dd:visible").slideUp("fast");
	$(this).parent()
		.next()
		.slideDown("fast");
		return false;
	});
	
	$(".nav a").each(function(i){
		if ($(this).attr("href") == window.location.toString())
		{
			$(this).parent().parent().parent().show();
		}
	});
});

