$(function() {
	$('#qAa .subSection').hide();

	$('#qAa h1, #qAa h2').click(function() {		
		var children = $(this).next('.subSection');
		if (children.size()) {
			if (children.css('display') == 'none') {
				$('#qAa .subSection:visible').not(children.parents('.subSection')).slideUp();
			}
			children.slideToggle();
		}
	});
	
	if (window.location.hash) {
  	$('.adminLink a').filter(function(){
  		return this.href.indexOf(window.location.hash.replace('#', '')) != -1;
  	}).parents().show();
  }
});
