	 $(document).ready(function() { 
		  $('.entry-content').hide();
		  $('.showhide').text('read more');
          $('.showhide').each(function() {
			$(this).click(function() {
				$(this).next().toggle(400);
				if($(this).text() == 'hide') {
					$(this).text('read more');
				} else {
					$(this).text('hide');
				}
			});
		   
		});
	});
