function newMovies() {
	//ターゲットフレーム
	this.target		= '#newMovie';

	//開閉ステータス
	this.statusName 	= 'newMovieStatus';
	this.status		= UtlStr.cnvStringBoolean( $.cookie( this.statusName  ) || true );

	//VIEWステータス
	this.viewStatusName 	= 'newMovieViewStatus';
	this.viewStatus		= UtlStr.cnvStringBoolean( $.cookie( this.viewStatusName ) || true );

	//XML
	this.xmlFile		= '/feed/creatives.php?format=j&lt=new&cache=' + (new Date()).getTime();
	this.title			= '新着投稿作品';
	this.maxColumns		= 8;

	this.basicFrame();

	//サムネールリストボタン
	$(this.target + "_frame_button_list1").click( this.toggleListButton( this, true ));
	$(this.target + "_frame_button_list2").click( this.toggleListButton( this, false ));
}
newMovies.prototype	= new fncFrameBodyMovie;
