jQuery.squish_text = function() {
	$('.squish-text').each(function() {
		$(this).find('.title').click(function() {
			if( $(this).parent().find('.text').is(':hidden') ) {
				$(this).parent().find('.text').slideDown('fast');
			} else {
				$(this).parent().find('.text').slideUp('fast');
			}
			return false;
		});
	});
};