$(document).ready(function(){

 	$("#speaker-bio").hide();
	$("#topic a#speaker_link").click(function(){
		$("#topic").hide();
		$("#speaker-bio").fadeIn("slow");
		return false;
	});
	
	$("#speaker-bio a#event_link").click(function(){
		$("#topic").fadeIn("slow");
		$("#speaker-bio").hide();
		return false;
	});
});