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

 // toggles the indirect on clicking the noted link  
  $('a#indirect_toggle').click(function() {
    $('#indirect').show(0);
	$('#direct').hide(0);
	$('#twincoil').hide(0);
  	$('#dsolar').hide(0);
	$('#intro').hide(0);
	$('#opt').hide(0);
    return false;
  });

 // toggles the twincoil on clicking the noted link  
  $('a#twincoil_toggle').click(function() {
    $('#direct').hide(0);
	$('#indirect').hide(0);
	$('#twincoil').show(0);
  	$('#dsolar').hide(0);
	$('#intro').hide(0);
	$('#opt').hide(0);
    return false;
  });
  
   // toggles the opt on clicking the noted link  
  $('a#opt_toggle').click(function() {
    $('#direct').hide(0);
	$('#indirect').hide(0);
	$('#twincoil').hide(0);
  	$('#dsolar').hide(0);
	$('#intro').hide(0);
	$('#opt').show(0);
    return false;
  });

 // toggles the dsolar on clicking the noted link  
  $('a#dsolar_toggle').click(function() {
    $('#direct').hide(0);
	$('#indirect').hide(0);
	$('#twincoil').hide(0);
  	$('#dsolar').show(0);
	$('#intro').hide(0);
	$('#opt').hide(0);
    return false;
  });
});