jQuery(document).ready(function(){
	$(".accordion").click(function() {
		$(this).next().slideToggle("slow");
		$(this).toggleClass("opened");
	}).next().hide();
	$("div#selected").next().show();
	$("div#selected").addClass("opened");
	// load();
});
