function pickUpMovies() {
	//ターゲットフレーム
	this.target		= '#pickupMovie';
	//開閉ステータス
	this.statusName 	= 'pickupMovieStatus';
	this.status		= UtlStr.cnvStringBoolean( $.cookie( this.statusName  ) || true );

	//VIEWステータス
	this.viewStatusName 	= 'pickupMovieViewStatus';
	this.viewStatus		= UtlStr.cnvStringBoolean( $.cookie( this.viewStatusName ) || true );
	//XML
	this.xmlFile		= '/feed/creatives.php?format=j&lt=pickup&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 ));
}
pickUpMovies.prototype	= new fncFrameBodyMovie;
