// Global scripts


function transcript(){
	show = 0;
	with(document.getElementById('transcript').style) {
		display = (display=='none') ? 'block' : 'none';
		show = (display=='none') ? 1 : 0;
	}
	with(document.getElementById('transcript-control')){
		innerHTML = (show < 1) ? 'Hide Transcript' : 'Show Transcript';
	}
}