

jQuery(document).ready(function($) {
	var moreLessLink = "<h4><a class='more-less-link' href='#'>more...</a></h4>";
	$("#about p.always-show").css("display","block");
	$("#about").append(moreLessLink);
	$(".more-less-link").toggle(
		function () { 
	      $("#about p:not(.always-show)").fadeIn(); 
	      $(this).text("less...");
	    },
	    function () { 
     	  $("#about p:not(.always-show)").fadeOut(); 
      	  $(this).text("more...");
    	}
    );

	
});
