function docs(num)
{
	switch(num){
		case "sitename":
			document.write('SiteName');
			break;

		//topの場合
		case "img_h2_top":
				document.write('<h2>');
				document.write('<img src="img/img-h2-to-top.gif" alt="トップ">');
				document.write('</h2>');
			break;

		//informationの場合
		case "img_h2_info":
			/*5,7,8,9は色のみ変更,6のときはMainContent内でh2を出力*/
			/*5,7は色のみ変更*/
				document.write('<h2>');
				document.write('<img src="img/img-h2-to-information.gif" alt="インフォメーション">');
				document.write('</h2>');
			break;

		//profileの場合
		case "img_h2_prof":
			/*5,7は色のみ変更*/
				document.write('<h2>');
				document.write('<img src="img/img-h2-to-profile.gif" alt="プロフィール">');
				document.write('</h2>');
			break;

		//lessonの場合
		case "img_h2_lesson":
			/*5,7は色のみ変更*/
				document.write('<div id="content-h2"><h2>');
				document.write('<img src="img/img-h2-to-lesson.gif" alt="レッスン">');
				document.write('</h2></div>');
			break;

		//linkの場合
		case "img_h2_link":
			/*5,7は色のみ変更*/
			document.write('<h2>');
			document.write('<img src="img/img-h2-to-link.gif" alt="リンク">');
			document.write('</h2>');
			break;

//画像テキストh3 コンサート/ディスコグラフィ
		//コンサート
		case "img_text_concert":
			/*背景黒用　5,7は色のみ変更*/
			document.write('<img src="img/img-h3-concert.gif" alt="私のコンサート情報です">');
			break;

//floatのclear
		//メニューとコンテンツ
		case "clear_menu_and_content":
			document.write('<div id="clr-menu-and-content"></div>');
			break;

		default:
			break;
	}

}