jQuery(document).ready(function() {
  jQuery('.write').hide();

  jQuery('.post').each(function() {
  	 jQuery('a#tell-us', this).click(function () {
	 	jQuery(this).parent().parent().children(".write").toggle(400);
		return false;
  	 });
  });
});
