$(document).ready(function() {		


	// show hide transcript -----------------------

	$('.button-transcript a').click(function(event){
	
		$('.transcript').toggle();
		
		if ($(this).text() == "show transcript") {
			$(this).text("hide transcript");
		}
		else {
			$(this).text("show transcript");
		}
		
		event.preventDefault();
	
	});








});


