$(document).ready(function(){
	
	$(".accordion h3").click(function(){
		$(this).next("div").slideToggle("fast")
		.siblings("div:visible").slideUp("fast");
		$(this).toggleClass("active");
		$(this).siblings("h3").removeClass("active");
	});
	
	if (window.location.hash) {
	var page = window.location.hash.substr(1);
		$(".accordion h3#"+ page).addClass("active");
		$(".accordion h3#"+ page).next("div").addClass("show");
	}

});