$(document).ready(function(){ 
    
	// Graceful backwards compatability for visitors without javascript enabled
	// By default the readmore link is hidden and the entire text displayed. With JS
	// enabled you only see the first paragraph and the read more link.
	//$('#more-button').removeClass('hidden');
	$('#read-more').hide();
	
	$('#more-button').click(function() {
		$('#read-more').slideToggle(400);
		
		// update link text
		var $link = $(this);
		if ( $link.text() == "Read More" ) {
			$link.text('Read Less');
		} else {
			$link.text('Read More');
		}
		
		// supress default link action
		return false;
		
	});
	
});
