$(document).ready(function() {

// hides the slickbox as soon as the DOM is ready
// (a little sooner than page load)
$('#show-hide-content-one').show();
$('#show-hide-content-two').hide();
$('#show-hide-content-three').hide();
$('#show-hide-content-four').hide();
$('#show-hide-content-five').hide();

// one
$('a#show-one').click(function() {
  $('#show-hide-content-one').show();
  $('#show-hide-content-two').hide();
  $('#show-hide-content-three').hide();
	$('#show-hide-content-four').hide();
	$('#show-hide-content-five').hide();
  return false;
});

// two
$('a#show-two').click(function() {
  $('#show-hide-content-one').hide();
  $('#show-hide-content-two').show();
  $('#show-hide-content-three').hide();
	$('#show-hide-content-four').hide();
	$('#show-hide-content-five').hide();
  return false;
});

// three
$('a#show-three').click(function() {
  $('#show-hide-content-one').hide();
  $('#show-hide-content-two').hide();
  $('#show-hide-content-three').show();
	$('#show-hide-content-four').hide();
	$('#show-hide-content-five').hide();
  return false;
});

// four
$('a#show-four').click(function() {
  $('#show-hide-content-one').hide();
  $('#show-hide-content-two').hide();
  $('#show-hide-content-three').hide();
	$('#show-hide-content-four').show();
	$('#show-hide-content-five').hide();
  return false;
});

// five
$('a#show-five').click(function() {
  $('#show-hide-content-one').hide();
  $('#show-hide-content-two').hide();
  $('#show-hide-content-three').hide();
	$('#show-hide-content-four').hide();
	$('#show-hide-content-five').show();
  return false;
});

});
