jQuery(document).ready(function(){
	$(".accordion").click(function() {
		$(this).next().toggle("slow");
	}).next().hide();
	$("div#selected").next().show();
});
