$(document).ready(function(){
	
	$('#button2Content').hide();
	$('#button3Content').hide();
	$('#button4Content').hide();
	
	function hideContent(buttNum)
		{
			for (i=0;i<=4;i++)
			{
				if (buttNum =! i) { $('.buttonContent').hide('slow'); } // hides content excpet the button clicked (buttNum)
			}
		}
	
	$('#button1').click(function() {
 		$('#button1Content').show('slow',hideContent(1));
 		return false;
  	});
	
	$('#button2').click(function() {
 		$('#button2Content').show('slow',hideContent(2));
 		return false;
  	});
	/*
	$('#button3').click(function() {
 		$('#button3Content').show('slow',hideContent(3));
 		return false;
  	});
	$('#button4').click(function() {
 		$('#button4Content').show('slow',hideContent(4));
 		return false;
  	});
	*/	
});
