
/********ヘッダメニュー（トップページ）***********/

/* トップページ */
function SetImageA11() {
	document.all['smenu'].style.backgroundImage='url( common/top_image02_01.gif)';
	m1.innerHTML = '最新情報と上の５つのメニューについての説明';
 }
 
/* 更新一覧 */
function SetImageA12() { 
	document.all['smenu'].style.backgroundImage='url( common/top_image02_02.gif)';
	m1.innerHTML = '　　○月/○日更新という形で計5ページあります。';
 }

/* サイズ一覧 */
function SetImageA13() { 
	document.all['smenu'].style.backgroundImage='url( common/top_image02_03.gif)';
	m1.innerHTML = '<FONT style="font-size : 6px;">■</FONT> <A href="size01.html">小品</A>　　<FONT style="font-size : 6px;">■</FONT> <A href="size02.html">まめ</A>　　<FONT style="font-size : 6px;">■</FONT> <A href="size03.html">貴風</A>　　<FONT style="font-size : 6px;">■</FONT> <A href="size04.html">無制限</A>　　<FONT style="font-size : 6px;">■</FONT> <A href="size05.html">水石</A>';
 }

/* ビフォーアフター */
function SetImageA14() { 
	document.all['smenu'].style.backgroundImage='url( common/top_image02_04.gif)';
	m1.innerHTML = '大改作超劇的盆栽ビフォーアフター';
 }

/* 知識と技 */
function SetImageA15() { 
	document.all['smenu'].style.backgroundImage='url( common/top_image02_05.gif)';
	m1.innerHTML = '<FONT style="font-size : 6px;">■</FONT> <A href="tisiki.html">松柏</A> &nbsp;<FONT style="font-size : 6px;">■</FONT> <A href="tisiki.html">雑木</A> &nbsp;<FONT style="font-size : 6px;">■</FONT> <A href="tisiki.html">実物・花物</A>';
 }

/* ほわわの・・・ */
function SetImageA16() { 
	document.all['smenu'].style.backgroundImage='url( common/top_image02_06.gif)';
	m1.innerHTML = '<FONT style="font-size : 6px;">■</FONT> <A href="howawa01.html">お店</A> &nbsp;<FONT style="font-size : 6px;">■</FONT> <A href="howawa02.html">日記</A> &nbsp;<FONT style="font-size : 6px;">■</FONT> <A href="howawa03.html">観光</A> &nbsp;<FONT style="font-size : 6px;">■</FONT><A href="howawa04.html"> リンク集</A> &nbsp;<FONT style="font-size : 6px;">■</FONT> <A href="sitemap.html">サイトマップ</A>';
 }



/**********************日付表示*************************/

function SetTime() {
	myD       = new Date();

	myYear    = myD.getYear();
	myYear4   = (myYear < 2000) ? myYear+1900 : myYear;
	myMonth   = myD.getMonth() + 1;
	myDate    = myD.getDate();
/*	myDay     = myD.getDay();*/

	myMess   = myYear4 + "/" + myMonth + "/" + myDate;

	document.write( myMess );
}
