// Override callback to show "more in series"
mediaport.old_callback_finished = mediaport.callback_finished;
mediaport.callback_finished = function() {
	this.old_callback_finished();
	iclFileCompleted();
}
// Override callback to hide "more in series"
mediaport.old_callback_started = mediaport.callback_started;
mediaport.callback_started = function() {
	this.old_callback_started();
	iclFileLoaded();
}
