$(function() {
		  //Hide the bios
		  $("p.bio").hide();
		  $("a.expand").toggle( function(){
							   $(this).parent().siblings("p.bio").show("fast");
							   $(this).text("Close Bio");
							},
							function() {
								$(this).parent().siblings("p.bio").hide("fast");
								$(this).text("Read Bio");
							});
		  
		  $("a.collapse").click( function() {
								$(this).parent().hide();
								$(this).parent().siblings("p.info").children("a.expand").text("Read Bio");
							});
		  
		  // MP3 Player
		  $(".mp3").jmp3();
});