$(document).ready(function(){

$("a")
	.filter(".affectNext")
		.click(function(){
			$(this).parent().find(".hidden").toggle("fast");
			return true;
		})
	.end()
	.filter(".affectConcept")
		.click(function(){
			$(".artists").hide("fast");
			$(".theworks").hide("fast");
			$(".faq").hide("fast");
			$(".concept").show("fast");
			return false;
		})
	.end()
	.filter(".affectArtists")
		.click(function(){
			$(".concept").hide("fast");
			$(".theworks").hide("fast");
			$(".faq").hide("fast");
			$(".artists").show("fast");
			return false;
		})
	.end()
	.filter(".affectTheworks")
		.click(function(){
			$(".artists").hide("fast");
			$(".concept").hide("fast");
			$(".faq").hide("fast");
			$(".theworks").show("fast");
			return false;
		})
	.end() 
	.filter(".affectFaq")
		.click(function(){
			$(".artists").hide("fast");
			$(".concept").hide("fast");
			$(".theworks").hide("fast");
			$(".faq").show("fast");
			return false;
		})
	.end(); 
 });