$(document).ready(function() {
	// hides the toggle box as soon as the DOM is ready
	// (a little sooner than page load)
	$('#togglebox1').hide();

	// shows the toggle box on clicking the noted link  
	$('a#toggle-show1').click(function() {
		$('#togglebox1').show('slow');
		return false;
	});
	
	// hides the toggle box on clicking the noted link  
	$('a#toggle-hide1').click(function() {
		$('#togglebox1').hide('fast');
		return false;
	});
	
	$('#togglebox2').hide();
	$('a#toggle-show2').click(function() {
		$('#togglebox2').show('slow');
		return false;
	});
	
	$('a#toggle-hide2').click(function() {
		$('#togglebox2').hide('fast');
		return false;
	});
	
	$('#togglebox3').hide();
	$('a#toggle-show3').click(function() {
		$('#togglebox3').show('slow');
		return false;
	});
	
	$('a#toggle-hide3').click(function() {
		$('#togglebox3').hide('fast');
		return false;
	});

	$('#togglebox4').hide();
	$('a#toggle-show4').click(function() {
		$('#togglebox4').show('slow');
		return false;
	});
	
	$('a#toggle-hide4').click(function() {
		$('#togglebox4').hide('fast');
		return false;
	});
	
	$('#togglebox5').hide();
	$('a#toggle-show5').click(function() {
		$('#togglebox5').show('slow');
		return false;
	});
	
	$('a#toggle-hide5').click(function() {
		$('#togglebox5').hide('fast');
		return false;
	});
});

