//Overriding default pathways to objects
// Called from Flash when new media loaded (e.g., continuous play, highlights reel)
function setEzMediaTitle(value){
	jQuery(".ez-mediaLander .ez-mainContent h1.ez-featureTitle").text(value);
	jQuery(".ez-mediaMain p .ez-media-info-title").text(value);
    //EVERYZING.playerMod_title_trunc(ezplayer_config.ezMaxTitleLength);
}
EVERYZING.metaPlayerRequest.setTitle = setEzMediaTitle;

function setEzMediaPubDate(value){
	jQuery(".ez-mediaMain p .featured-ep-pub-date").text(value);
}
EVERYZING.metaPlayerRequest.setPubDate = setEzMediaPubDate;

function setEzMediaDescription(value){
	jQuery(".ez-mediaMain p .ez-playerMod-episode-description").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 keywords timeline and thumbnail
function removeEzMediaTranscript() {
	jQuery("#fullTranscript").hide();
	jQuery("#fullTranscriptLink").hide();
	jQuery("#featuredKeywords").hide();
	jQuery("#fullThumb").hide();
}
EVERYZING.metaPlayerRequest.removeFullTextTranscript = removeEzMediaTranscript;