/* Alle erzeugten Zanamntou Instanzen */
var PlayerInstance = new Array();

/* konstruktor */
function Zanmantou(id){
	this.player = document.getElementById(id);
	this.id = id;
	this.isRegistered = false;
	this.callbackArgs = "";
	PlayerInstance.push(new Array(id, this));
}

/* stop */
Zanmantou.prototype.stop = function(){
	this.player.JMAPI_stop();
}

/* jumpAndPlay */
Zanmantou.prototype.jumpAndPlay = function(index){
	this.player.JMAPI_jump(index);
}
