// ************************************************************************************************
// *** Holds the player states
// ************************************************************************************************

function PlayState() {
	this.undefined = 0;
	this.stopped = 1;
	this.paused = 2;
	this.playing = 3;	
}