$(document).ready(function() {
	
	$("dd:not(dd.open)").hide();

	$("#right div a").click(function() {
		var clickElement = 0;
		for(var i=0 ; i<$("div:visible").get().length ; i++) {
			if ($("div:visible").get()[i] == $(this).parent().next().get()[0]) { clickElement = i; }
		}
			if ($("div:visible").get()[clickElement] == $(this).parent().next().get()[0]) {
				$(this).parent().next().fadeTo("fast", 0);
				$(this).parent().next().slideUp("slow");	
			}
			else {
				$(this).parent().next().slideDown("def");
				$(this).parent().next().fadeTo("def", 1);
			}
		return true;
	});
	
	$("#nav dt a").click(function(){
    		if ($("dd:visible").get()[0] != $(this).parent().next().get()[0]) {	  	
			$("#nav dd").fadeTo("fast", 0);
			$("#nav dd:visible").slideUp("slow");
			$(this).parent().next().slideDown("def");
			$(this).parent().next().fadeTo("def", 1);
		if($(this).parent().next().get()[0].innerHTML.charAt(1).toLowerCase() == "a") { return true; }
		else return false;
		}
		
	});
	
});
