// JavaScript Document

var id_list = new Array(


	'karate_typec',

	'fistselbowsweep',

	'six_kicks',

	'awa_property',

	'five_kicks',


	//ダミー
	'xxxxxxxx'
);


var item_list = {


	'karate_typec':
		Array(
		'http://brave-stream.com/combat/weapon/karate_type_c/',//リンク先URL
		'http://brave-stream.com/ja/combat/weapon/img/typeC_135.jpg',//画像ファイル名
		'"Karate typeC" is released.',//見出し
		'Aug  1,2010',//日付
		'After an interval of about 1 year, I released a new work of the Karate Fight series.The characteristic of "typeC" is composition from classical and traditional skills of karate.You can enjoy classical karate fighting, that is possible only in Second Life.   <a href="http://brave-stream.com/combat/weapon/karate_type_c/" class="link">Details</a>'//紹介文
	),

	'fistselbowsweep':
		Array(
		'http://brave-stream.com/animation/karate/combination/fists_elbow_sweep/',//リンク先URL
		'http://brave-stream.com/ja/animation/karate/img/fists_elbow_sweep_135.jpg',//画像ファイル名
		'"Fists,Elbow,Sweep" is released.',//見出し
		'Jul 23,2010',//日付
		'Today, I released the new animation "Fists,Elbow,Sweep". This animation includes five hand skills.<br /><br /><a href="http://brave-stream.com/animation/karate/combination/fists_elbow_sweep/" class="link">Details</a>'//紹介文
	),

	'six_kicks':
		Array(
		'http://brave-stream.com/animation/karate/combination/six_kicks/',//リンク先URL
		'http://brave-stream.com/ja/animation/karate/img/six_kicks_135.jpg',//画像ファイル名
		'"Six Kicks" is released.',//見出し
		'Jul 17,2010',//日付
		'Today, I released the animation "Six Kicks". This animation is a skill to kick six kicks continuously. In many dojo, this skill is a subject in the examination, too.<br /><br /><a href="http://brave-stream.com/animation/karate/combination/six_kicks/" class="link">Details</a>'//紹介文
	),

	'awa_property':
		Array(
		'http://brave-stream.com/animation/dance/awa/',//リンク先URL
		'http://brave-stream.com/ja/animation/dance/img/awa_odori_f_135.jpg',//画像ファイル名
		'Priority and Permission of Awa Falk Dance',//見出し
		'Jul 17,2010',//日付
		'I changed the property of "Awa Falk Dance".The priority changed to 4. The "Modify" is added to permission.'//紹介文
	),

	'five_kicks':
		Array(
		'http://brave-stream.com/animation/karate/combination/five_kicks/',//リンク先URL
		'http://brave-stream.com/ja/animation/karate/img/five_kicks_135.jpg',//画像ファイル名
		'"Five Kicks" is released.',//見出し
		'Jul 11,2010',//日付
		'Today, I released the animation "Five Kicks". This animation is a skill to kick five kicks continuously. In many dojo, this skill is a subject in the examination.<br /><br /><a href="http://brave-stream.com/animation/karate/combination/five_kicks/" class="link">Details</a>'//紹介文
	),


	//ダミー
	'xxxxxxx':
		Array(
		'/blog_ja/',//リンク先URL
		'/ja/img/item/type_s_135.jpg',//画像ファイル名
		'Karate for DCS2/CCS/XRPS typeSを公開しました。',//見出し
		'2009年12月12日',//日付
		'タイプSです。'//紹介文
	)

};

function ChangeItem(str) {
		if (typeof item_list[str] != "undefined") {
		document.getElementById("topic_url").href = item_list[str][0];	//画像からのリンクへ挿入
		document.getElementById("topic_url_2").href = item_list[str][0];  //見出しからのリンクへ挿入
		document.getElementById("img_main").src = item_list[str][1]; //画像へ挿入
		document.getElementById("topic_tit").innerHTML = item_list[str][2];  //トピック見出しへ挿入
		document.getElementById("topic_date").innerHTML = item_list[str][3];  //トピック日付へ挿入
		document.getElementById("topic_tex").innerHTML = item_list[str][4];  //紹介文へ挿入
		}
}
