$(document).ready(function() {
    // Hide everything
    $(".accordion").hide(); 

    // Show the right one depending on the URL
    var anchor = document.location.toString().split('#')[1];
    if (anchor) {
	$('#' + anchor).show();
	$('#' + anchor).prev().addClass('selectedLabel');
	$('#' + anchor).parent().addClass('selectedBlock');
    }

    // Make the other buttons work!
    $(".toggle").click(function() {
	$(".accordion").hide(); 
	$(".toggle").removeClass('selectedLabel');  
	$(".toggle").parent().removeClass('selectedBlock');

	$(this).addClass('selectedLabel');
	$(this).parent().addClass('selectedBlock');
	$(this).next(".accordion").slideToggle(600);
    });
});
