var flv = new Array();
var jump = new Array();

//######################################//
//### 書き換えが必要な部分ここから↓ ###//
//######################################//
//※画像へのリンクは絶対パスで記述すること！！

//「ふるさとの木の下で…」発売前SPOT
//flv.push('ca12274_s_pre.flv');
//jump.push('./disco/ca12274.html');

//「ふるさとの木の下で…」好評発売中SPOT
flv.push('ca12274_s.flv');
jump.push('./disco/ca12274.html');


//######################################//
//### 書き換えが必要な部分ここまで↑ ###//
//######################################//

if(flv.length > 0 && flv.length == jump.length) {
	var flvString = flv.toString();
	var jumpString = jump.toString();
	
	var timerPromotionVideo = setTimeout(function() {
		clearTimeout(timerPromotionVideo);
		PromotionVideo.init('./flash/movie.swf', 200, 150, flvString, jumpString);
		delete timerPromotionVideo;
	}, 50);
}
