$(document).ready(function(){
	
	$("#nav_bio").click(function() {
		$('#black_stroke_box_nav li a').removeClass('nav_active');
		$(this).addClass('nav_active');
		$("#kelly_and_kids_image_nav").hide();
		$("#brown_box").hide();
		$("#teacher_training_apps").hide();
		$("#black_stroke_box").show();
		$("#kelly_photo").fadeIn();
		$("#kelly_wood_bio").fadeIn();
	});
	
	$("#nav_training").click(function() {
		$('#black_stroke_box_nav li a').removeClass('nav_active');
		$(this).addClass('nav_active');
		$("#kelly_and_kids_image_nav").hide();
		$("#brown_box").hide();
		$("#kelly_photo").hide();
		$("#kelly_wood_bio").hide();
		$("#black_stroke_box").show();
		$("#teacher_training_apps").fadeIn();
	});
	
	$("#nav_kelly_and_kids").click(function() {
		$('#black_stroke_box_nav li a').removeClass('nav_active');
		$(this).addClass('nav_active');
		$("#teacher_training_apps").hide();
		$("#black_stroke_box").hide();
		$("#kelly_photo").hide();
		$("#kelly_wood_bio").hide();
		$("#brown_box").show();
		$("#kelly_and_kids_image_nav").fadeIn();
	});
	
	$("#kelly_and_kids_image_nav a").each(function(){
		$(this).click(function(){
			$("#brown_box").children().hide();
			var rel = $(this).attr("rel");
			$("#" + rel).fadeIn();
		});
	});
	
});
