$(document).ready(function() {
	$('#contentBox0').show();
	$('#contentBox1').hide();
	$('#contentBox2').hide();
	$('#contentBox3').hide();
	// if Box 0
	$('#contentBox0-show').click(function() {
   	 $('#contentBox0').slideDown('slow');
   	 $('#contentBox1').hide('fast');
   	 $('#contentBox2').hide('fast');
   	 $('#contentBox3').hide('fast');
	 return false;
	});
	// if Box 1
	$('#contentBox1-show').click(function() {
   	 $('#contentBox1').slideDown('slow');
   	 $('#contentBox0').hide('fast');
   	 $('#contentBox2').hide('fast');
   	 $('#contentBox3').hide('fast');
	 return false;
	});
	// if Box 2
	$('#contentBox2-show').click(function() {
   	 $('#contentBox2').slideDown('slow');
   	 $('#contentBox0').hide('fast');
   	 $('#contentBox1').hide('fast');
   	 $('#contentBox3').hide('fast');
	 return false;
	});
	// if Box 3
	$('#contentBox3-show').click(function() {
   	 $('#contentBox3').slideDown('slow');
   	 $('#contentBox0').hide('fast');
   	 $('#contentBox1').hide('fast');
   	 $('#contentBox2').hide('fast');
	 return false;
	});
});
