﻿/**
 * Handles the display of press releases on the symposium site.
 *
 * If JavaScript is disabled, the code on the page is set to fully display the article
 * rather than truncating it.
 */
$(document).ready(function() {
	var showText = "Read More";
	var hideText = "Read Less";
	
	$('div.remaining').css('display', 'none');
	$('div.readlink').css('display', 'inline');

	$('a.remainingshow').click(function() {
		$(this).parent().parent().children('.remaining').slideToggle("fast");
		
		if ($(this).text() == showText) {
			$(this).text(hideText);
		}
		else {
			$(this).text(showText);
		}
		
		return false;
	});
});