// 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);
	return false;
	});
	
	
	
	
	
	
		// hides the text as soon as the DOM is ready
	// (a little sooner than page load)
	$('#more2').hide();
	
	
	// toggles the text on clicking the noted link 
	$('a#more2-toggle').click(function() {
	$('#more2').toggle(400);
	return false;
	});
	
			// hides the text as soon as the DOM is ready
	// (a little sooner than page load)
	$('#more3').hide();
	
	
	// toggles the text on clicking the noted link 
	$('a#more3-toggle').click(function() {
	$('#more3').toggle(400);
	return false;
	});
	
				// hides the text as soon as the DOM is ready
	// (a little sooner than page load)
	$('#more4').hide();
	
	
	// toggles the text on clicking the noted link 
	$('a#more4-toggle').click(function() {
	$('#more4').toggle(400);
	return false;
	});
	
	
});

