$(document).ready(function(){
	$('.title').click(function() {
		$(this).next().toggle('fast');
		return false;
	}).next().hide();
 });

