$(document).ready(function(){
	$('.ac_title').click(function() {
		$(this).next().slideToggle();
	}).next().hide();
});

