$(function(){
	$(".accordion").click(function(){
			$(this).find("div").slideToggle();
	});
});


