var artist = new Array();
var title = new Array();
var flv = new Array();
var jump = new Array();
var jacket = new Array();

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

//玉置成実「LADY MIND」
artist.push('玉置成実');
title.push("LADY MIND");
flv.push('../../artist/tamaki-nami/flash/TECI-249_01_v.flv');
jump.push('../artist/tamaki-nami/');
jacket.push('http://www.teichiku.co.jp/artist/tamaki-nami/discography/jacket/TECI-249.jpg');

//風男塾「風一揆」
artist.push('風男塾');
title.push("風一揆");
flv.push('../../artist/fu-danjuku/flash/TECI-250_01_v.flv');
jump.push('../artist/fu-danjuku/');
jacket.push('http://www.teichiku.co.jp/artist/fu-danjuku/discography/jacket/TECI-250.jpg');

//堂島孝平「ハヤテ」
artist.push('堂島孝平');
title.push("ハヤテ");
flv.push('../../artist/djkh/flash/TECI-1317_01_v.flv');
jump.push('../artist/djkh/');
jacket.push('http://www.teichiku.co.jp/artist/djkh/discography/jacket/TECI-1317.jpg');

//信政 誠「蒼の季節」
artist.push('信政 誠');
title.push("新樹 ～nobumako no uta～");
flv.push('../../artist/nobumasa/flash/ci1306_01_v.flv');
jump.push('../artist/nobumasa/');
jacket.push('http://www.teichiku.co.jp/artist/nobumasa/discography/jacket/TECI-1306.jpg');

//LOOP CHILD「もう一度、ただいまって聞きたくて」
artist.push('LOOP CHILD');
title.push("もう一度、ただいまって聞きたくて");
flv.push('../../artist/loopchild/flash/TECI-239_v.flv');
jump.push('../artist/loopchild/');
jacket.push('http://www.teichiku.co.jp/artist/loopchild/discography/jacket/TECI-239.jpg');

//風男塾「Love Spider」
//artist.push('風男塾');
//title.push("Love Spider");
//flv.push('../../artist/fu-danjuku/flash/TECI-240_v.flv');
//jump.push('../artist/fu-danjuku/');
//jacket.push('http://www.teichiku.co.jp/artist/fu-danjuku/discography/jacket/TECI-240.jpg');

//怒髪天「Merry X'mas Mr. Lonelyman」
//artist.push('怒髪天');
//title.push("Merry X'mas Mr. Lonelyman");
//flv.push('../../artist/dohatsuten/flash/ci225_v.flv');
//jump.push('../artist/dohatsuten/');
//jacket.push('http://www.teichiku.co.jp/artist/dohatsuten/disco/jacket/ci225.jpg');

//腐男塾「無敵！夏休み」
//artist.push('腐男塾');
//title.push('同じ時代に生まれた若者たち');
//flv.push('../../artist/fudanjuku/flash/ci233_v.flv');
//jump.push('../artist/fudanjuku/');
//jacket.push('http://www.teichiku.co.jp/artist/fudanjuku/disco/jacket/ci233.jpg');

//LOOP CHILD「ever」
//artist.push('LOOP CHILD');
//title.push('ever');
//flv.push('../../artist/loopchild/flash/ci1285_v.flv');
//jump.push('../artist/loopchild/');
//jacket.push('http://www.teichiku.co.jp/artist/loopchild/disco/jacket/ci1285.jpg');

//STARDUST REVUE「夢への地図」
//artist.push('STARDUST REVUE');
//title.push('夢への地図');
//flv.push('../../artist/s-d-r/flash/ci223_v.flv');
//jump.push('../artist/s-d-r/');
//jacket.push('http://www.teichiku.co.jp/artist/s-d-r/disco/jacket/ci223.jpg');

//怒髪天「真夏のキリギリス」
//artist.push('怒髪天');
//title.push('真夏のキリギリス');
//flv.push('../../artist/dohatsuten/flash/ci221_v.flv');
//jump.push('../artist/dohatsuten/');
//jacket.push('http://www.teichiku.co.jp/artist/dohatsuten/disco/jacket/ci221.jpg');

/*
//0 SOUL 7「嫌嫌嫌」
artist.push('0 SOUL 7');
title.push('嫌嫌嫌');
flv.push('../../artist/0soul7/flash/ci210_v.flv');
jump.push('../artist/0soul7/');
jacket.push('http://www.teichiku.co.jp/artist/0soul7/disco/jacket/ci210.jpg');

//中野腐女子シスターズ「Honey Bee～」
artist.push('中野腐女子スターズ');
title.push('Honey Bee～');
flv.push('../../artist/nfs724/flash/ci207_v.flv');
jump.push('../artist/nfs724/');
jacket.push('http://www.teichiku.co.jp/artist/nfs724/disco/jacket/ci207.jpg');
*/


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

if(flv.length > 0 && artist.length == title.length && title.length == flv.length && flv.length == jump.length && jump.length == jacket.length) {
	var artistString = artist.toString();
	var titleString = title.toString();
	var flvString = flv.toString();
	var jumpString = jump.toString();
	var jacketString = jacket.toString();
	
	var timerPromotionVideo = setTimeout(function() {
		clearTimeout(timerPromotionVideo);
		PromotionVideo.init('./flash/movie.swf', 200, 150, artistString, titleString, flvString, jumpString, jacketString);
	}, 1200);
}
