// collapsing and expanding text in Most Recent Article box

$(document).ready(function(){
	$("#FullArticle").hide();
    $("#MoreArticle").click(function () {
      $("#FullArticle").toggle("slow");
	  $(this).text($(this).text() == 'More' ? 'Less' : 'More');
    });

 });
