$(document).ready(function() {
  $(".list-post-content").hide();
  $("a.list-post-title-link").click(function()
  {
  	$next(".list-post-content").slideToggle(600);
  	return false;
  });
  $("li.list-post").click(function()
  {
    $(this).children(".list-post-content").slideToggle(600);
	var read = $(this).children(".list-post-more").text();
	if (read == "Read more")
	{
		$(this).children(".list-post-more").replaceWith('<span class="list-post-more">Read less</span>');
	}
	else
	{
		$(this).children(".list-post-more").replaceWith('<span class="list-post-more">Read more</span>');
	}
	return false;
  });
});