$(document).ready(function() {
 // hides the adv as soon as the DOM is ready
 // (a little sooner than page load)
  $('#why').hide();
  $('#adv').hide();
  $('#speci').hide();
  $('#opt').hide();
 
 
  // toggles the intro on clicking the noted link  
  $('a#intro_toggle').click(function() {
    $('#why').hide(0);
	$('#adv').hide(0);
	$('#speci').hide(0);
	$('#intro').show(0);
	$('#opt').hide(0);
    return false;
  });
  
 // toggles the why on clicking the noted link  
  $('a#why_toggle').click(function() {
    $('#why').show(0);
	$('#adv').hide(0);
	$('#speci').hide(0);
	$('#intro').hide(0);
	$('#opt').hide(0);
    return false;
  });

 // toggles the adv on clicking the noted link  
  $('a#adv_toggle').click(function() {
    $('#adv').show(0);
	$('#why').hide(0);
	$('#speci').hide(0);
	$('#intro').hide(0);
	$('#opt').hide(0);
    return false;
  });

 // toggles the speci on clicking the noted link  
  $('a#speci_toggle').click(function() {
    $('#why').hide(0);
	$('#adv').hide(0);
	$('#speci').show(0);
	$('#intro').hide(0);
	$('#opt').hide(0);
    return false;
  });
  
   // toggles the opt on clicking the noted link  
  $('a#opt_toggle').click(function() {
    $('#why').hide(0);
	$('#adv').hide(0);
	$('#speci').hide(0);
	$('#intro').hide(0);
	$('#opt').show(0);
    return false;
  });
});