// Hide and Show Code 1.0 - NIck Pelton - 2/7/08  - using Jquery 1.2.2 
// 

$(document).ready(function() {
 
 
 
 // Hide All boxes with class .hide
 // (a little sooner than page load)
  $('div.paragraph1').hide();



// Loads #1 on click  hides all other divs
  $('a#show1').click(function() {
	$('#1').show('slow');
	$('#2').hide('fast');
	$('#3').hide('fast');
	$('#4').hide('fast');
	$('#5').hide('fast');
	$('#howto').hide('fast');
	
	
	return false;
  });
  
  
// Loads #2 on click  hides all other divs
  $('a#show2').click(function() {
	$('#2').show('slow');
	$('#1').hide('fast');
	$('#3').hide('fast');
	$('#4').hide('fast');
	$('#5').hide('fast');
	$('#howto').hide('fast');
	
	return false;
  });
  
// Loads #3 on click  hides all other divs
  $('a#show3').click(function() {
	$('#3').show('slow');
	$('#1').hide('fast');
	$('#2').hide('fast');
	$('#4').hide('fast');
	$('#5').hide('fast');
	$('#howto').hide('fast');
	
	return false;
  });
  
// Loads #4 on click  hides all other divs
  $('a#show4').click(function() {
	$('#4').show('slow');
	$('#1').hide('fast');
	$('#2').hide('fast');
	$('#3').hide('fast');
	$('#5').hide('fast');
	$('#howto').hide('fast');
	
	return false;
  });
  
  
// Loads #5 on click  hides all other divs
  $('a#show5').click(function() {
	$('#5').show('slow');
	$('#1').hide('fast');
	$('#2').hide('fast');
	$('#3').hide('fast');
	$('#4').hide('fast');
	$('#howto').hide('fast');
	
	return false;
  });
 
 

});
