function moreText()
{
	// The first item on the page is in view mode.
	$("div.moreText:first").show();
	$("a.moreLink:first").hide();
	// This hides all other more sections and shows the clicked one.
	$("a.moreLink").click(function(){
		$("div.moreText").hide();
		$("a.moreLink").show();
		$(this).hide();
		var thisHyperlink = this;
		$(this).parents("div.listing").find("div.moreText").slideDown(/*function(){
			$(document).scrollTo('a' + $(thisHyperlink).attr("href"), 500);
		}*/);
	});
	return false;
}