$(function(){
//#js supported => hide transcript and show transcript link
$('#transcript').hide();
$('#toggle').show();

//#toggle transcript on click
$('#toggle').click(function(){
		$('#transcript').toggle();
		var action = $(this).text();
		if(action == 'View Text Version')
		{
			$(this).text('Hide Text Version');
		}
		else
		{
			$(this).text('View Text Version');
		}
	});	

});