	/**
		選択ユーザの関連動画
	 */
	function userRelationMovies ( args ) {
		//UID
		this.uid		= args.uid;
		uid 			= this.uid;

		this.rootPath		= args.rootPath;

		//ターゲットフレーム
		this.target		= '#userMovies';

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

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

		this.title		= 'このユーザの他の作品';
		this.maxColumns		= 6;

		//XML
		this.xmlFile		= '/feed/authorCreatives.php?format=j&uid=' + uid + '&cache=' + (new Date()).getTime();

		this.basicFrame();

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

		//全ての動画を見るボタン
		$(this.target + "_btn_view_all").html('<a href="/u/?uid=' + uid + '">全ての動画を見る</a>');
	}
	userRelationMovies.prototype	= new fncFrameBodyMovieSizeS;
