	function movieList( args ) {
		//表示件数
		var viewNumber		= 20;
		//ページナンバー
		var currentPageNumber	= args.p || 1;

		args.currentPageNumber	= currentPageNumber;
		//COMMON名
		var frameName		= 'movieList';
		//ターゲットフレーム
		this.target		= '#' + frameName;
		//検索キーワード
		var wd	= args.wd || '';
		var st	= args.st || '';
		//タイトル
		if (( args.wd == undefined ) && ( args.st == undefined )) {
			this.title		= '新着一覧';
		} else {
			this.title		= '作品検索';
			wd	= escape( args.wd );
		}
                //ページング
                args.pageValues		= '/search2/?st=' + st + '&wd=' + wd + '&p=';
                this.args = args;
                
		//開閉ステータス
		this.statusName 	= frameName + 'Status';
		this.status		= UtlStr.cnvStringBoolean( $.cookie( this.statusName  ) || true );

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

		//XML
		this.xmlFile		= '/feed/creatives.php?format=j&lt=new&wd=' + wd + '&st=' + st + '&rows=' + viewNumber + '&page=' + currentPageNumber;
		this.maxColumns		= viewNumber;

		this.basicFrame();

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

		//リスト出力
		this.getList ();
	}
	movieList.prototype	= new fncFrameBodyMovie;

