function newsFrame() {

	this.title		= '編集部からのお知らせ';
	this.target		= '#news';
	//開閉ステータス
	this.statusName 	= 'newsStatus';
	this.status		= UtlStr.cnvStringBoolean( $.cookie( this.statusName  ) || true );
	//XML
	this.xmlFile		= '/feed/info.php?cache=' + (new Date()).getTime();
	this.maxColumns	= 8;

	this.basicFrame();
}
newsFrame.prototype	= new fncFrameBodySimpleColumn;
