$(document).ready(function(){
	$("#nav_art").click(function() {
		$('#black_stroke_box_nav li a').removeClass('nav_active');
		$(this).addClass('nav_active');
		$("#black_stroke_box").hide();
		$("#brown_box").fadeIn();
		$("#kids_text").fadeIn();
		$("#art_image_nav").fadeIn();
	});
	
	$("#nav_quotes").click(function() {
		$('#black_stroke_box_nav li a').removeClass('nav_active');
		$(this).addClass('nav_active');
		$("#kids_text").hide();
		$("#art_image_nav").hide();
		$("#brown_box").hide();
		$("#black_stroke_box").fadeIn();
	});
	
	$("#art_image_nav a").each(function(){
		$(this).click(function(){
			$("#brown_box").children().hide();
			var rel = $(this).attr("rel");
			$("#" + rel).fadeIn();
		});
	});
	
	
});
