$(document).ready(function(){
	$("#filter_action").remove();
	$("#instruction_links").parent().remove();
	$("#bread-crumbs-table").remove();
	$("#filter").next().remove();
	$('#passage_table tr td:not(:last-child)').addClass('padding_left_middle');
});

switchPanelDisplay = function (strLinkId, strPanelId){
	$(document).ready(function(){
		$("#" + strPanelId).hide();
		$("#" + strLinkId).click(
			function()
			{  
				if($("#" + strPanelId).css("display") == 'block' )
				{
					$("#" + strPanelId).hide();
				}
				else
				{
					$("#" + strPanelId).show();
				}
			}
		);
	});
}		

