$(document).ready(function () {						
	var flip = 1;
	$("div.aboutDiv>p:last").append('<span class="readmore" id="homeabout-more-link"> <a href="">Read More</a> &gt;</span>');
	$("div.moreAbout").hide();
    $("span#homeabout-more-link").click(function(){
      $("div.moreAbout").slideToggle("slow");
	  if (flip++ % 2 == 0){
		$(this).hide().html(' <a href="">Read More</a> &gt;');
		$("div.aboutDiv>p:last").append($(this));
		$(this).show("slow");
	  } else {
		$(this).hide().html(' <a href="">Condense</a> ^');
	    $("div.aboutDiv p:last").append($(this));
		$(this).show();
	  }
	  return false;
    });
});