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