$("document").ready(function() {

	clearStage();
	$("#content01").show();
	$("#bunnybutt").click(function() {
		clearStage();
		$("#content01").show();
		});
	$("#home").click(function() {
		clearStage();
		$("#content01").toggle();
		});
	
	$("#imag").click(function(){
			clearStage();
		$("#content02").toggle();
		
		});
	$("#game").click(function(){
			clearStage();
		$("#content03").toggle();
		});
	$("#anim").click(function(){
			clearStage();
		$("#content04").toggle();
		});
	$("#vide").click(function(){
			clearStage();
		$("#content05").toggle();
		});
	$("#blog").click(function(){
			clearStage();
		$("#content06").toggle();
		});
	$("#prod").click(function(){
			clearStage();
		$("#content07").toggle();
		});
	
	function clearStage()
	{
		
		
		$("#content01").hide();
		$("#content02").hide();
		$("#content03").hide();
		$("#content04").hide();
		$("#content05").hide();
		$("#content06").hide();
		$("#content07").hide();
		
	}
});
