// JavaScript Document

// When the page is ready
	$(document).ready(function(){
	
	function allhide() {
	$('#sec1, #sec2, #sec3, #sec4, #sec5').hide();
	}
	
	allhide();
	
	$('#btn1').click(function() {
		//allhide();
		$('#sec1').toggle('slow');
		return false;
		});
	
	$('#btn2').click(function() {
		//allhide();
		$('#sec2').toggle('slow');
		return false;
		});
	
	$('#btn3').click(function() {
		//allhide();
		$('#sec3').toggle('slow');
		return false;
		});
	
	$('#btn4').click(function() {
		//allhide();
		$('#sec4').toggle('slow');
		return false;
		});
	
	$('#btn5').click(function() {
		//allhide();
		$('#sec5').toggle('slow');
		return false;
		});

	
   });