function levelManager() {
	this.currentStatus = 'standard';
}

levelManager.prototype.getContent = function() {
	if (this.currentStatus == 'standard') {
		this.currentStatus = 'more';
		return ("<img src='images/transition_standard.png'/><img src='images/transition_more.png'/>");
	} else {
		this.currentStatus = 'standard';
		return ("<img src='images/transition_more.png'/><img src='images/transition_standard.png'/>");
	}
}
