	/**
		イベント情報
	*/
	function eventDetail ( eventDir ) {
		
		//ターゲットフレーム
		this.target		= '#event';
		
		//開閉ステータス
		this.statusName 	= 'userDetailStatus';
		this.status		= UtlStr.cnvStringBoolean( $.cookie( this.statusName  ) || true );
		
		this.title		= '参加企画';
		
		//XML
		this.xmlFile		= '/feed/eventDetail.php?format=j&event=' + eventDir + '&cache=' + (new Date()).getTime();
		
		//XML読み込み
		var item = { url : this.xmlFile, dataType : "JSONP" };
		var myData = utl.getDataWithAjax( item );
		myData = eval( 'json=' + myData );
		
		var target 		= this.target;
		title		= myData.channel.item.title;
		description	= UtlStr.urlAutoLink ( myData.channel.item.description );
		description	= UtlStr.getConvertLFStr( description );
		link		= myData.channel.item.link;
		createDate	= myData.channel.item.createDate;
		banner		= myData.channel.item.banner;
		adTag		= myData.channel.item.adTag;
		this.voteFlag	= myData.channel.item.flags.vote;
		this.bbsFlag	= myData.channel.item.flags.bbs;
		
		//LINK追加
		title		= '<a href="' + link + '">' + title + '</a>';
		if ( banner !='[object Object]' && banner != undefined ) {
			banner		= '<a href="' + link + '"><img src="' + banner + '" width="280"></a>';
			$( target + '_bannerImage' ).html( banner );
		}
		
		$( target + '_title' ).html( title );
		$( target + '_description' ).html( description );
		
		this.basicFrame();
	}
	eventDetail.prototype	= new fncFrameBodyCommon;