MyPlayer = Player.getPlayerById("player0");

jQuery(document).ready(function(){ 
	jQuery("#fullTextLink").bind("click", function(){ EVERYZING.playerControls.openTranscript(); })
});

EVERYZING = EVERYZING || {};
EVERYZING.playerControls = EVERYZING.playerControls || {};

EVERYZING.playerControls.jumpPlayerTo = function(time){
	playerInst0.seek(time);
}

// opens up full transcript in popup
EVERYZING.playerControls.openTranscript = function(){
	var pWidth = 520; // width of popup
	var pHeight = 520; // width of popup
	var leftPos = screen.width - pWidth - 100; // 100px from right of screen
	var topPos = (screen.height - pHeight)/2; // vertically centered
	var win = window.open(location.href.replace("/m/", "/transcript/"), "Transcript", "left=" + leftPos + ",top=" + topPos + ",width=" + pWidth + ",height=" + pHeight + ",resizable,scrollbars");
}


