function collapseAllDetails() {
	$("ul.shortlistOrProductionLinks").hide();
	$("a.shortlistOrBreakdownTitle").removeClass("active");
}
function documentReady() {
	// collapse all shortlist and breakdown details and set all links to not active
	collapseAllDetails();
	// if <a> with class="shortlistOrBreakdownTitle" clicked show next <ul>
	$("a.shortlistOrBreakdownTitle").live("click", function(e) {
		// collapse any open details
		collapseAllDetails();
		// show the next <ul>
		$(this).next("ul.shortlistOrProductionLinks").show();
		// set this link to class="active"
		$(this).addClass('active');
		// 
		e.preventDefault();
	});
}
$(documentReady);
