// JavaScript Document
$( function() {
	$("dl.collapsible").each( function() {
		$(this).find("dt").click( function() {
			$(this).next("dd").toggle(250);
		});
	});

	// Subnav links that toggle collapsible sections
	jQuery(".collapsible-expander-links a").click( function(e) {
		e.preventDefault();
		var id = this.href.substring( this.href.indexOf("#") );
		jQuery(id).click();
	});

});

