<!-- //

$('document').ready( function() {
	ajBio('steven');
	noFlashVid();
} );

function ajBio(character) {
	$('div.bio').hide();
	$('#bio-' + character).show();
}

function switchB4Vid(character, blipID) {
	$('#bio-' + character).children('div.embed').html('<embed src="http://blip.tv/play/' + blipID + '?brandname=afterjudgment.com&brandlink=http%3A//afterjudgment.com/&lightcolor=0x557722&backcolor=0x00000&frontcolor=0xCCCCCC&showguidebutton=false" type="application/x-shockwave-flash" width="500" height="312" allowscriptaccess="always" allowfullscreen="true"></embed>');
	noFlashVid();
}

function noFlashVid() {
	// flash check / quicktime replace
	var requiredMajorVersion = 8;
	var requiredMinorVersion = 0;
	var requiredRevision = 0;
	var hasReqestedVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
	if (!hasReqestedVersion) {
		var quicktimeURL;
		$('embed').each( function(i) {
			quicktimeURL = $(this).attr('id');
			$(this).replaceWith('<embed height="512" width="300" style="width: 512px; height: 300px" src="http://afterjudgment.com/podcast/qtposter.png" href="' + quicktimeURL + '" type="video/x-m4v" target="myself" scale="1" />');
		} );
		if ((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i))) {
			$('p.vidDesc a').css('display', 'none');
		}
	}
}

// -->