$(window).load(function(){
						
	$("#Transcript").show();
	
	var IsTranscriptDisplayed = true;
	
	$("#TranscriptShowLink").html("hide <img src='http://www.ourfirstloves.com/images/hideTriangle.jpg'>");
						
	$("#TranscriptShowLink").click(function() { 
		
		if (IsTranscriptDisplayed == false) { 
			IsTranscriptDisplayed = true; 
			// $("#Transcript").show();
			
			$("#Transcript").slideDown("normal");
			
			
			
			$(this).html("hide <img src='http://www.ourfirstloves.com/images/hideTriangle.jpg'>");
		}
		else { 
			IsTranscriptDisplayed = false; 
			//$("#Transcript").hide();
			$("#Transcript").slideUp("normal");
			$(this).html("show <img src='http://www.ourfirstloves.com/images/showTriangle.jpg'>");
		}
		return false;
	});					
});
