$(document).ready(function() {
 // hides the slickbox as soon as the DOM is ready
 // (a little sooner than page load)
  $('#mike').show();

  $('#geoff').hide();

  $('#joe').hide();

  $('#kim').hide();

// shows the slickbox on clicking the noted link
//  $('a#slick-show').click(function() {
//	$('#slickbox').show('slow');
//	return false;
 // });
 // hides the slickbox on clicking the noted link
//  $('a#slick-hide').click(function() {
//	$('#slickbox').hide('fast');
//	return false;
//  });

// toggles the slickbox on clicking the noted link
  $('a#mike-toggle').click(function() {
	$('#mike').toggle(400);
	$('#geoff').hide();
	$('#joe').hide();
	$('#kim').hide();
	return false;
  });

// toggles the slickbox on clicking the noted link
  $('a#geoff-toggle').click(function() {
	$('#geoff').toggle(400);
	$('#mike').hide();
	$('#joe').hide();
	$('#kim').hide();
	return false;
  });

// toggles the slickbox on clicking the noted link
  $('a#joe-toggle').click(function() {
	$('#joe').toggle(400);
	$('#mike').hide();
	$('#geoff').hide();
	$('#kim').hide();
	return false;
  });

// toggles the slickbox on clicking the noted link
  $('a#kim-toggle').click(function() {
	$('#kim').toggle(400);
	$('#mike').hide();
	$('#geoff').hide();
	$('#joe').hide();
	return false;
  });

});