$(function(){
	//Expanding List
	$("dl.expand dd").not("dd.start").hide();
	$("dl.expand dt").click(function(){
		$(this).next("dd").slideToggle("slow")
		.siblings("dd:visible").slideUp("slow");
		$(this).toggleClass("active");
		$(this).siblings("dt").removeClass("active");
	});
	
	//External links to open in new window
	$("a.external, a.pdf, a[href $='.pdf'], a[href *='http://']").attr({target: "_blank"});
});