// JavaScript Document

$(document).ready(function() {
						   
	// hides the text as soon as the DOM is ready
	// (a little sooner than page load)
	$('#more').hide();
	
	// shows the text on clicking the noted link 
	$('a#more-show').click(function() {
	$('#more').show('slow');
	
	return false;
	});
	
	// hides the text on clicking the noted link 
	$('a#more-hide').click(function() {
	$('#more').hide('slow');
	return false;
	});
	
	// toggles the text on clicking the noted link 
	$('a#more-toggle').click(function() {
	$('#more').toggle(400);
	$('a#more-toggle').hide('slow');
	return false;
	});
	
});
