﻿/*
	Tables code for any page featuring a SearchResults table
*/

$( function() {
	
	$(".SearchResults tbody a.Expand").click( function() {
		$(this).toggleClass("Open").parents("tr.MainDetails").next(".FurtherDetails").toggle();
		
		return false;
	});

});

$( function() {
	
	$(".DisplayToggle").click( function() {
		$(this).toggleClass("Closed").next().toggleClass("Collapsed");
		
		return false;
	});
	
});