	/**
		投票情報
	*/
	function creativeVote ( args ) {
		//MID
		this.mid		= args.mid;
		mid 			= this.mid;

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

		var target 		= this.target;
		var totalCount;
		this.getResult = function ( pr ) {
			setPr = -1;
			if ( pr > -1 ) {
				setPr = pr;
			}

			//XML
			this.xmlFile		= '/feed/rate.php?key=' + args.key + '&mid=' + this.mid + '&pr=' + setPr + '&cache=' + (new Date()).getTime();
			//XML読み込み
			var item = { url : this.xmlFile };
			var myData = utl.getDataWithAjax( item );

			$(myData).find("item").each(function( $this ){
				totalCount	= $(this).children("totalCount").text();
				personalRate	= $(this).children("personalRate").text();
			});

			var voteArea;
			//ユーザログインチェック
			if ($.cookie( "_user_name"  ) == null ) {
				voteArea	=  '<div class="textAlignLeft">';
				voteArea	+= '<div id="clapBox">';
				voteArea	+= '	<div id="clapLeftBox">';
				voteArea	+= '		<ul id="clapBtn">';
				voteArea	+= '			<?php echo $returnUrl ?>ログインして<br>拍手しませんか？</a>';
				voteArea	+= '		</ul>';
				voteArea	+= '	</div>';
				voteArea	+= '	<div id="clapRightBox">';
				voteArea	+= '		<div id="clapTitle"></div>';
				voteArea	+= '		<div id="clapTotal">' + totalCount + '</div>';
				voteArea	+= '	</div>';
				voteArea	+= '	<div class="c-both"></div>';
				voteArea	+= '</div>';
			} else {
				if ( personalRate == '' ) {
					voteArea	=  '<div class="textAlignLeft">';
					voteArea	+= '<div id="clapBox">';
					voteArea	+= '	<div id="clapLeftBox">';
					voteArea	+= '		<ul id="clapBtn">';
					voteArea	+= '			<li id="clapBtn01"><a id="userClap" href="" onclick="return false">拍手</a></li>';
					voteArea	+= '		</ul>';
					voteArea	+= '	</div>';
					voteArea	+= '	<div id="clapRightBox">';
					voteArea	+= '		<div id="clapTitle"></div>';
					voteArea	+= '		<div id="clapTotal">' + totalCount + '</div>';
					voteArea	+= '	</div>';
					voteArea	+= '	<div class="c-both"></div>';
					voteArea	+= '</div>';
				} else {
					voteArea	=  '<div class="textAlignLeft">';
					voteArea	+= '<div id="clapBox">';
					voteArea	+= '	<div id="clapLeftBox">';
					voteArea	+= '		<div id="noClapBtn"></div>';
					voteArea	+= '	</div>';
					voteArea	+= '	<div id="clapRightBox">';
					voteArea	+= '		<div id="clapTitle"></div>';
					voteArea	+= '		<div id="clapTotal">' + totalCount + '</div>';
					voteArea	+= '	</div>';
					voteArea	+= '	<div class="c-both"></div>';
					voteArea	+= '</div>';
				}
			}
			$('#vote').empty();
			$('#vote').html( voteArea );
		}
	}