﻿function SectionCommand(param_map){
	this._map = param_map;
}
	
SectionCommand.prototype = {	

	execute:function() {
		SectionManager.getInstance().switchSection(this._map);
	}
	
};
