$(function() {

	$('a.table1').click(function() {
		
		$('td.spacer1').toggle();
		$('table.table1').toggle();
		
		setHideShowText($('a.table1').children('h3'));
		
	});


	$('a.table2').click(function() {
		
		$('td.spacer2').toggle();
		$('table.table2').toggle();
		
		setHideShowText($('a.table2').children('h3'));
		
	});


	$('a.table3').click(function() {
		
		$('td.spacer3').toggle();
		$('table.table3').toggle();
		
		setHideShowText($('a.table3').children('h3'));

	});
	
	
	function setHideShowText(thelink) {
		
		if (thelink.text() == 'Expand') {
			thelink.text('Collapse');
		} else {
			thelink.text('Expand');
		}
		
	}
	
});