	/**
		選択動画の関連動画
	 */
	function movieRelationMovies ( args ) {
		//MID
		this.mid		= args.mid;
		mid 			= this.mid;

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

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

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

		this.title		= 'この作品に関連する投稿作品';
		this.maxColumns		= 6;

		//XML
		this.xmlFile		= '/feed/relatedCreatives.php?format=j&key=' + args.key + '&mid=' + mid;
//		this.xmlFile		= '/feed/relatedCreatives.php?format=j&key=' + args.key + '&mid=' + mid + '&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 ));
	}
	movieRelationMovies.prototype	= new fncFrameBodyMovieSizeS;

