
function loadBios(image, name, position){
	$("#bioDisplayBg").css({opacity:0.7});
	$("#bioDisplayName span").css({color:mainColor});
	$("#bioPeopleTitle").css({color:mainColor});
	$("#bioPeopleList span").css({color:mainColor});
	$("#bioPeopleList a").mouseover(function(){
		$(this).stop(true).animate({color:mainColor},150);
	});
	$("#bioPeopleList a").mouseout(function(){
		$(this).stop(true).animate({color:"#FFFFFF"},150);
	});
	if(FlashDetect.installed){
		var html = '<embed src="./assets/bio_name.swf" width="500" height="65" wmode="transparent" flashvars="color='+mainColor+'&name='+name+'&position='+position+'"></embed>';
		$("#bioDisplayName").html(html);
		$("#bioDisplayName").css({left:$("#bioDisplayName").position().left-5});
		html = '<embed src="./assets/title.swf" width="500" height="36" wmode="transparent" flashvars="color='+mainColor+'&text=People"></embed>';
		$("#bioPeopleTitle").html(html);
		$("#bioPeopleTitle").css({left:$("#bioPeopleTitle").position().left-5});
	}
	$("#bioPeopleList span").html('<img src="./assets/bio_arrow.png" onload="tintPNG2(this)"/>'+$("#bioPeopleList span").html());
	$("#bioDisplay").css({opacity:0,visibility:"hidden"});
	changeBg(image);
	BgOnComplete = biosFadeIn;
}
function biosFadeIn(){
	$("#bioDisplay").css({visibility:"visible"}).delay(10).animate({opacity:1},300);
}
