//Overriding default pathways to objects
// Called from Flash when new media loaded (e.g., continuous play, highlights reel)
function setEzMediaTitle(value){
	jQuery(".ez-mediaMain .ez-playerMod-title span").text(value);
}
EVERYZING.metaPlayerRequest.setTitle = setEzMediaTitle;

function setEzMediaPubDate(value){
	jQuery(".ez-mediaMain .ez-playerMod-pubdate span").text(value);
}
EVERYZING.metaPlayerRequest.setPubDate = setEzMediaPubDate;

function setEzMediaDescription(value){
	jQuery(".ez-mediaMain .ez-playerMod-description span").text(value);
}
EVERYZING.metaPlayerRequest.setDescription = setEzMediaDescription;

// When the "lander" video is finished, remove the full transcript because it's
// no longer relevant. (We may, in future, refresh the text via Ajax or whatever.)
// Also remove thumbnail
function removeEzMediaTranscript() {
	jQuery("#ez-fullTranscript-area").hide();
	jQuery(".ez-mediaInfo .ez-mediaThumb").hide();
}
EVERYZING.metaPlayerRequest.removeFullTextTranscript = removeEzMediaTranscript;