
EVERYZING.playerMod_episode_trunc = function(maxLen){
	maxLen = parseInt(maxLen, 10);
	if (isNaN(maxLen) || maxLen <= 0){ return; }
	
    var descriptions = jQuery('.ez-playerMod-episode-description');
    
	descriptions.each(function(){
        jQuery(this).truncate(maxLen, {
            chars: / /,
            leave: false,
            trail: [true, "... [ <a href='#' class='more-less' title='Click to show all of this text.'>More</a> ]", "&nbsp;[ <a href='#' class='more-less' title='Click to truncate this text.'>Less</a> ]"]
        });
    });
}

