//////////////////////////////////////////////////////////////////////////////////////////////////
//utility functions
/*
 MenuList
*********************************************************/
function SSMenuList() {
	this.menu = new Array; //Menu °´Ã¼ ¸ñ·Ï
	this.size = SSMenuList_size;
	this.addMenu = SSMenuList_addMenu;
}

function SSMenuList_addMenu(_menu) {
	this.menu[this.menu.length] = _menu;
}

function SSMenuList_size() {
	return this.menu.length;
}

/*
 Menu
*********************************************************/
function SSMenu(_code, _title) {
	this.code = returnValue(_code).trim();
	this.title = returnValue(_title).trim();
	this.setValue = SSMenu_setValue;
}

function SSMenu_setValue(_code, _title) {
	this.code = returnValue(_code);
	this.title = returnValue(_title);
}
