// JavaScript Document
$(document).ready( function() {
	
	Shadowbox.init({
		flv_player: "/mediaplayer/player.swf", // ie7 doesn't detect where the flvplayer is, need to state it manually. 
	});
	
	var imageSrc = new Image(); 
	imageSrc.src = "../images/symbol-minus.png";
		
	$("h2.bio-header").click(function(e) {		
		$(this).parent().children("div.bio").toggle("blind");
		if ( $(this).hasClass("plus")) {
			$(this).removeClass("plus"); 
			$(this).addClass("minus"); 	
		}
		else {
			$(this).removeClass("minus"); 
			$(this).addClass("plus"); 				
		}
	}); 

	$("#lnkReadMore").click(function(e) {

		$("#read-more").toggle("blind");
		if ($(this).text() == "READ MORE...") {
			$(this).text("READ LESS...");
		} 
		else {
			$(this).text("READ MORE...");
		}

	}); 

	
}); 
