$(document).ready(function() {
  $('div.talk-show> div').hide();
/*  $('div.talk-show:eq(0)> h3').append("Click Here to read more...<img src='/images/plusminus.gif' alt='' border='0' />") */
$('div.talk-show>tt').append("[+ Read more...]")
  $('div.talk-show> tt').click(function() {
	if ( $(this).next().is(":hidden") ) {
		$(this).next().slideDown('slow');
		$(this).empty();
		$(this).append("[- Hide]");

	    }
	else {
		$(this).next().slideUp('400');
		$(this).empty();
		$(this).append("[+ Read more]");

	}

	
  });
});



/*


$("div.talk-show").find("tt:contains('hide')").each(function() {
	$(this).empty();
	$(this).append("Click Here to read more...");
	$(this).next().slideUp('400');
});
$(this).empty();
$(this).append("Click to hide")
$(this).next().slideDown('400');




$("div.talk-show").find("tt").each(function() {
	$(this).empty();
	$(this).append("Read More");
	$(this).next().slideUp('400');
});



$(this).empty();
$(this).append("Click to hide")
$(this).next().slideDown('400');

	$("div:contains('test')").hide();
 */
