$(document).ready(function(){

	//Hide (Collapse) the toggle containers on load
	$("#accordion div.pane"); 

	//Switch the "Open" and "Close" state per click
	$("h2").toggle(function(){
		$(this).addClass("current");
		}, function () {
		$(this).removeClass("current");
	});

	//Slide up and down on click
	$("h2").click(function(){
		$(this).next("#accordion div.pane").slideToggle("normal");
	});

});
