// JavaScript Document

txt = 1;

w0 = "　";
w1 = "桜（サクラ）―　優れた美人";
w2 = "片栗（カタクリ）―　初恋、純潔";
w3 = "雛罌粟（ヒナゲシ）―　慰め、いたわり";
w4 = "桜草（サクラソウ）―　長続きする愛情";

w5 = "花火 ―　西武園ゆうえんち　花火大会";
w6 = "花火 ―　西武園ゆうえんち　花火大会";
w7 = "蓮（ハス）―　雄弁、神聖";
w8 = "百合（ユリ）―　純潔、荘厳";

w9 = "秋桜（コスモス）―　乙女の心、美麗、調和";
w10 = "向日葵（ヒマワリ）―　あなただけを見つめます、光輝、熱愛";
w11 = "栗（クリ）―　ブナ科クリ属の木の総称。落葉樹";
w12 = "蝋梅（ロウバイ）―　ゆかしさ、慈愛心";

w13 = "秋桜（コスモス）―　乙女の心、美麗、調和";
w14 = "向日葵（ヒマワリ）―　あなただけを見つめます、光輝、熱愛";
w15 = "栗（クリ）―　ブナ科クリ属の木の総称。落葉樹";
w16 = "蝋梅（ロウバイ）―　ゆかしさ、慈愛心";

function changImg(t,n){
	txt = t;
	document.flame.src = "2009/" + n + ".jpg";
	
	if (txt == 1){ document.getElementById("Flower").innerHTML = w1; }
	else if (txt == 2) { document.getElementById("Flower").innerHTML = w2; }
	else if (txt == 3) { document.getElementById("Flower").innerHTML = w3; }
	else if (txt == 4) { document.getElementById("Flower").innerHTML = w4; }
	else if (txt == 5) { document.getElementById("Flower").innerHTML = w5; }
	else if (txt == 6) { document.getElementById("Flower").innerHTML = w6; }
	else if (txt == 7) { document.getElementById("Flower").innerHTML = w7; }
	else if (txt == 8) { document.getElementById("Flower").innerHTML = w8; }
	else if (txt == 9) { document.getElementById("Flower").innerHTML = w9; }
	else if (txt == 10) { document.getElementById("Flower").innerHTML = w10; }
	else if (txt == 11) { document.getElementById("Flower").innerHTML = w11; }
	else if (txt == 12) { document.getElementById("Flower").innerHTML = w12; }
	else if (txt == 13) { document.getElementById("Flower").innerHTML = w13; }
	else if (txt == 14) { document.getElementById("Flower").innerHTML = w14; }
	else if (txt == 15) { document.getElementById("Flower").innerHTML = w15; }
	else if (txt == 16) { document.getElementById("Flower").innerHTML = w16; }
	else { document.getElementById("Flower").innerHTML = w0; }
}