$(document).ready(function() {
  $('#slidebox').hide();
  $('#hcomcast').hide();
  $('#hdiageo').hide();
  $('#hasa').hide();

	$('a#scoldwell').click(function() {
	$('#hcoldwell').show('fast');
	$('#hcomcast').hide();
	$('#hdiageo').hide();
	$('#hasa').hide();
	return false;
	});
  
  $('a#scomcast').click(function() {
	$('#hcomcast').show('fast');
	$('#hcoldwell').hide();
	$('#hdiageo').hide();
	$('#hasa').hide();
	return false;
	});
  
  $('a#sdiageo').click(function() {
	$('#hdiageo').show('fast');
	$('#hcoldwell').hide();
	$('#hcomcast').hide();
	$('#hasa').hide();
	return false;
	});
  
  $('a#sasa').click(function() {
	$('#hasa').show('fast');
	$('#hcoldwell').hide();
	$('#hcomcast').hide();
	$('#hdiageo').hide();
	return false;
	});
  
});
