Mys.noticeList = function(config)
{
	Mys.noticeList.superclass.constructor.call(this, config);
};

Ext.extend(Mys.noticeList, Mys.boardList, {
	boardID : [16, 203],
	pager : new Mys.KMAPager,
	order : "insert_date",
	
	headerTemplate : (new Ext.Template([
		'<table width="100%" cellspacing="0" cellpadding="0" 40px="" height:="" style="border: 5px solid rgb(231, 231, 231); height: 40px;">',
			'<tr>',
				'<td class="c name" width="45" height="30">번호</td>',
				'<td class="c name-subject" width="550">제목</td>',
				'<td class="c name-date" width="50">날짜</td>',
			'</tr>',
		'</table>'
	])).compile()
});