
$(function () {

	$("dl.more dt .pseudo_link").click(function() {
		var b = $(this).parent().next("dd");
		if (!b.hasClass("expanded")) {
			b.slideDown( 200, function() { b.addClass("expanded"); } );
		} else {
			b.slideUp( 200, function() { b.removeClass("expanded"); } );
		}
	});

});
