$(document).ready(function(){
	$('div#stateTOC ~ div.section').hide();
	
	$('div#stateTOC a').click(function(){
		var state = $(this).attr('href').split('#')[1];
		$('div.section:not(#'+state+'), div#introduction').hide();
		$('div.section#'+state+'').toggle();
		return false;
	});
	
	$('a[href="#introduction"]').click(function(){
		$('div#introduction').show();
		$('div.section').hide();
		return false;
	});
});
