$(document).ready(function(){
	$("div.bioPic").click(function(){
		$("div.bioText").each(function(){
			$(this).fadeOut();
		});
		var clickedBio = "div#"+$(this).attr("rel");
		setTimeout(function(){$(clickedBio).fadeIn();},500);
		pageTracker._trackPageview($(this).attr("rel"));
	});
});