// JavaScript Document
 $(document).ready(function() {
	var bioOn = "";
	var bioLast = "";
	var bioNext = "";
	
	function showMeeker() {
		$("div.bioMeeker").show("normal");
		$("div.bioOhara").hide("normal");
		$("div.bioSmith").hide("normal");
		$(".bio-photo-meeker").animate( {opacity: 0}, "normal" );
		$(".bio-photo-ohara").animate( {opacity: 1}, "normal" );
		$(".bio-photo-smith").animate( {opacity: 1}, "normal" );
		$(".photo-meeker").animate( {opacity: 1}, "normal" );
		$(".photo-ohara").animate( {opacity: 0.3}, "normal" );
		$(".photo-smith").animate( {opacity: 0.3}, "normal" );
		return false;
	}
	
	
	$("div.bioMeeker").hide();
	$("div.bioOhara").hide();
	$("div.bioSmith").hide();
	$("a#showMeeker").click(showMeeker);
   $("a#showOhara").click(function() {
		$("div.bioMeeker").hide("normal");
		$("div.bioOhara").show("normal");
		$("div.bioSmith").hide("normal");
		$(".bio-photo-meeker").animate( {opacity: 1}, "normal" );
		$(".bio-photo-ohara").animate( {opacity: 0}, "normal" );
		$(".bio-photo-smith").animate( {opacity: 1}, "normal" );
		$(".photo-meeker").animate( {opacity: 0.3}, "normal" );
		$(".photo-ohara").animate( {opacity: 1}, "normal" );
		$(".photo-smith").animate( {opacity: 0.3}, "normal" );
		return false;
   });
   $("a#showSmith").click(function() {
		$("div.bioMeeker").hide("normal");
		$("div.bioOhara").hide("normal");
		$("div.bioSmith").show("normal");
		$(".bio-photo-meeker").animate( {opacity: 1}, "normal" );
		$(".bio-photo-ohara").animate( {opacity: 1}, "normal" );
		$(".bio-photo-smith").animate( {opacity: 0}, "normal" );
		$(".photo-meeker").animate( {opacity: 0.3}, "normal" );
		$(".photo-ohara").animate( {opacity: 0.3}, "normal" );
		$(".photo-smith").animate( {opacity: 1}, "normal" );
		return false;
   });
   $("a#hideMeeker").click(function() {
		$("div.bioMeeker").hide("normal");
		$(".bio-photo-meeker").animate( {opacity: 1}, "normal" );
		$(".bio-photo-ohara").animate( {opacity: 1}, "normal" );
		$(".bio-photo-smith").animate( {opacity: 1}, "normal" );
		$(".photo-meeker").animate( {opacity: 1}, "normal" );
		$(".photo-ohara").animate( {opacity: 1}, "normal" );
		$(".photo-smith").animate( {opacity: 1}, "normal" );
		return false;
   });
   $("a#hideOhara").click(function() {
		$("div.bioOhara").hide("normal");
		$(".bio-photo-meeker").animate( {opacity: 1}, "normal" );
		$(".bio-photo-ohara").animate( {opacity: 1}, "normal" );
		$(".bio-photo-smith").animate( {opacity: 1}, "normal" );
		$(".photo-meeker").animate( {opacity: 1}, "normal" );
		$(".photo-ohara").animate( {opacity: 1}, "normal" );
		$(".photo-smith").animate( {opacity: 1}, "normal" );
		return false;
   });
   $("a#hideSmith").click(function() {
		$("div.bioSmith").hide("normal");
		$(".bio-photo-meeker").animate( {opacity: 1}, "normal" );
		$(".bio-photo-ohara").animate( {opacity: 1}, "normal" );
		$(".bio-photo-smith").animate( {opacity: 1}, "normal" );
		$(".photo-meeker").animate( {opacity: 1}, "normal" );
		$(".photo-ohara").animate( {opacity: 1}, "normal" );
		$(".photo-smith").animate( {opacity: 1}, "normal" );
		return false;
		/*$(shownDiv).fadeOut("fast", function () {
			shownDiv = "div#mapsDiv"
			$(shownDiv).fadeIn("fast");
		});*/
   });
 });

