$( function() {
	
	//alert(window.location.hash);
	
	// Only hide them if there's more than one category on the page
	if($('#content h3.listheader').length > 1) {
	
		$('#content div.listlist').hide();
	
		$('#content h3.listheader a').click( function() {

			$('#content div.list_'+ $(this).attr('rel')).toggle();
		
			return false;
		
		})

	} else {
		
		$('#content h3.listheader a').click( function() {
			return false;
		});
		
	}
	
	// Jump to specific part of page and show resources for it
	if(window.location.hash != '') {
		
		$('#content h3.listheader').each( function() {
			
			if(('#'+ $(this).attr('id')) == window.location.hash) {
				
				$('#content div.list_'+ $(this).find('a').attr('rel')).toggle();
				
				window.location = window.location;
				
			}
			
		});
		
	}
	
});
