﻿// AIS Header
//

	var divContainer = document.getElementById("container");
	{
		// div id="header"
		var divHeader = document.createElement("div");
		divContainer.appendChild(divHeader);
		divHeader.setAttribute("id", "header");
		{
			// p id="hdLogoTec"
			var pHdLogoTec = document.createElement("p");
			divHeader.appendChild(pHdLogoTec);
			pHdLogoTec.setAttribute("id", "hdLogoTec");
			{
				// a
				var aLogoTec = document.createElement("a");
				pHdLogoTec.appendChild(aLogoTec);
				aLogoTec.setAttribute("href", "/");
				{
					// img alt="TEC"
					var imgLogoTec = document.createElement("img");
					aLogoTec.appendChild(imgLogoTec);
					imgLogoTec.setAttribute("src", "/img/common/header/logo_tec.png");
					imgLogoTec.setAttribute("alt", "TEC");
					imgLogoTec.setAttribute("title", "TEC");
					imgLogoTec.setAttribute("width",  "62");
					imgLogoTec.setAttribute("height", "24");
					
				} // end of a
			} // end of p id="hdLogoTec"

			// p id="hdLogoCompany"	changed "h1" to "p" 20080319 kakinoki
			var pHdLogoCompany = document.createElement("p");
			divHeader.appendChild(pHdLogoCompany);
			pHdLogoCompany.setAttribute("id", "hdLogoCompany");
			{
				// a
				var aLogoAis = document.createElement("a");
				pHdLogoCompany.appendChild(aLogoAis);
				aLogoAis.setAttribute("href", "/");
				{
					// img alt="AIソリューションズ株式会社"
					var imgLogoAis = document.createElement("img");
					aLogoAis.appendChild(imgLogoAis);
					imgLogoAis.setAttribute("src", "/img/common/header/company_logo.png");
					imgLogoAis.setAttribute("alt", "AIソリューションズ株式会社");
					imgLogoAis.setAttribute("title", "AIソリューションズ株式会社");
					imgLogoAis.setAttribute("width", "282");
					imgLogoAis.setAttribute("height", "22");

				}	// end of a
			} //end of h1 id="hdLogoCompany"

			// p id="hdTecTop"
			var pHdTecTop = document.createElement("p");
			divHeader.appendChild(pHdTecTop);
			pHdTecTop.setAttribute("id", "hdTecTop");
			{
				// a
				var aHdTecTop = document.createElement("a");
				pHdTecTop.appendChild(aHdTecTop);
				aHdTecTop.setAttribute("href", "http://www.toshibatec.co.jp/");
				aHdTecTop.setAttribute("target", "_blank");
				{
					// img alt="東芝テックトップページ"
					var imgTecTop = document.createElement("img");
					aHdTecTop.appendChild(imgTecTop);
					imgTecTop.setAttribute("src", "/img/common/header/toshibatec_top_n.png");
					imgTecTop.setAttribute("alt", "東芝テックトップページ");
					imgTecTop.setAttribute("title", "東芝テックトップページ");
					imgTecTop.setAttribute("width", "123");
					imgTecTop.setAttribute("height", "15");

				} // end of a
			} // end of p id="hdTecTop"

			// p id = "hdContact"
			var pHdContact = document.createElement("p");
			divHeader.appendChild(pHdContact);
			pHdContact.setAttribute("id", "hdContact");
			{
				// a
				var aHdContact = document.createElement("a");
				pHdContact.appendChild(aHdContact);
				aHdContact.setAttribute("href", "/contact/");
				aHdContact.setAttribute("target",  "_blank");
				{
					// img alt="お問い合わせ"
					var imgContact = document.createElement("img");
					aHdContact.appendChild(imgContact);
					imgContact.setAttribute("src", "/img/common/header/contact_n.png");
					imgContact.setAttribute("alt", "お問い合わせ");
					imgContact.setAttribute("title", "お問い合わせ");
					imgContact.setAttribute("width",  "87");
					imgContact.setAttribute("height", "15");

				} // end of a
			} // end of p id="hdContact"

			// p id="hdSitemap"
			var pHdSitemap = document.createElement("p");
			divHeader.appendChild(pHdSitemap);
			pHdSitemap.setAttribute("id", "hdSitemap");
			{
				// a
				var aHdSitemap = document.createElement("a");
				pHdSitemap.appendChild(aHdSitemap);
				aHdSitemap.setAttribute("href", "/sitemap/sitemap.html");
				{
					// img alt="サイトマップ"
					var imgHdSitemap = document.createElement("img");
					aHdSitemap.appendChild(imgHdSitemap);
					imgHdSitemap.setAttribute("src", "/img/common/header/sitemap_n.png");
					imgHdSitemap.setAttribute("alt", "サイトマップ");
					imgHdSitemap.setAttribute("title", "サイトマップ");
					imgHdSitemap.setAttribute("width",  "74");
					imgHdSitemap.setAttribute("height", "13");

				} // end of a
			} // end of p id="hdSitemap"

//
// 当面は検索なし
// structure_base.css div#container div#header p#hdSitemap を参照
//
//	ここから
//			// div id = "hdSearch"
//			var divHdSearch = document.createElement("div");
//			divHeader.appendChild(divHdSearch);
//			divHdSearch.setAttribute("id", "hdSearch");
//			{
//				// form id="hdSearchF"
//				var formHdSearchF = document.createElement("form");
//				divHdSearch.appendChild(formHdSearchF);
//				formHdSearchF.setAttribute("id",   "hdSearchF");
//				formHdSearchF.setAttribute("name", "hdSearchF");
//				formHdSearchF.setAttribute("action", "/");
//				formHdSearchF.setAttribute("method", "get");
//				formHdSearchF.setAttribute("class",  "clear");
//				{
//					// input type="text" id="keyword"
//					var inputKeyword = document.createElement("input");
//					formHdSearchF.appendChild(inputKeyword);
//					inputKeyword.setAttribute("id",   "keyword");
//					inputKeyword.setAttribute("name", "keyword");
//					inputKeyword.setAttribute("type", "text");
//					inputKeyword.setAttribute("value", "");
//					inputKeyword.setAttribute("maxlength", "50");
//
//					// input id="search" type="image"
//					var inputSearch;
//					try {
//						// only IE
//						inputSearch = document.createElement('<input type="image" />');
//					} catch(e) {
//						// except IE (Standard DOM)
//						inputSearch = document.createElement("input");
//						inputSearch.setAttribute("type", "image");
//					}
//					formHdSearchF.appendChild(inputSearch);
//					inputSearch.setAttribute("id",   "search");
//					inputSearch.setAttribute("name", "search");
//					inputSearch.setAttribute("src", "/img/common/header/btn-search.gif");
//					inputSearch.setAttribute("alt", "検索");
//					inputSearch.setAttribute("title", "検索");
//
//				} // end of form id="hdSearchF"
//			} // end of div id="hdSearch"
//
// ここまで
//
		} // end of div id="header"
		// p id="path"
		var pPath = document.createElement("p");
		divContainer.appendChild(pPath);
		pPath.setAttribute("id", "path");
//		{
//			// a
//			var aPathProduct = document.createElement("a");
//			pPath.appendChild(aPathProduct);
//			aPathProduct.setAttribute("href", "/");
//			{
//				// text
//				aPathProduct.appendChild(document.createTextNode("トップページ"));
//			}
//			
//			pPath.appendChild(document.createTextNode(" > 製品情報"));
//		} // end of p id="path"
		
		// div id="global"
		var divGlobal = document.createElement("div");
		divContainer.appendChild(divGlobal);
		divGlobal.setAttribute("id", "global");
		{
			// ul 	
			var ulGlobal = document.createElement("ul");
			divGlobal.appendChild(ulGlobal);
			{
				// li
				var liGlobalTop = document.createElement("li");
				ulGlobal.appendChild(liGlobalTop);
				{
					// a
					var aGlobalTop = document.createElement("a");
					liGlobalTop.appendChild(aGlobalTop);
					aGlobalTop.setAttribute("href", "/");
					{
						// img alt="トップページ"
						var imgGlobalTop = document.createElement("img");
						aGlobalTop.appendChild(imgGlobalTop);
						imgGlobalTop.setAttribute("src", "/img/common/global/navi_01top_n.jpg" );
						imgGlobalTop.setAttribute("alt", "トップページ");
						imgGlobalTop.setAttribute("title", "トップページ");

					} // end of a
				} // end of li

				// li
				var liGlobalSolution = document.createElement("li");
				ulGlobal.appendChild(liGlobalSolution);
				{
					// a
					var aGlobalSolution = document.createElement("a");
					liGlobalSolution.appendChild(aGlobalSolution);
					aGlobalSolution.setAttribute("href", "/solution/");
					{
						// img alt="ソリューション"
						var imgGlobalSolution = document.createElement("img");
						aGlobalSolution.appendChild(imgGlobalSolution);
						imgGlobalSolution.setAttribute("src", "/img/common/global/navi_03solution_n.jpg" );
						imgGlobalSolution.setAttribute("alt", "ソリューション");
						imgGlobalSolution.setAttribute("title", "ソリューション");

					} // end of a
				} // end of li

				// li
				var liGlobalProducts = document.createElement("li");
				ulGlobal.appendChild(liGlobalProducts);
				{
					// a
					var aGlobalProducts = document.createElement("a");
					liGlobalProducts.appendChild(aGlobalProducts);
					aGlobalProducts.setAttribute("href", "/products/");
					{
						// img alt="製品情報"
						var imgGlobalProducts = document.createElement("img");
						aGlobalProducts.appendChild(imgGlobalProducts);
						imgGlobalProducts.setAttribute("src", "/img/common/global/navi_02product_n.jpg" );
						imgGlobalProducts.setAttribute("alt", "製品情報");
						imgGlobalProducts.setAttribute("title", "製品情報");

						} // end of a
				} // end of li 

				// li
				var liGlobalSupport = document.createElement("li");
				ulGlobal.appendChild(liGlobalSupport);
				{
					// a
					var aGlobalSupport = document.createElement("a");
					liGlobalSupport.appendChild(aGlobalSupport);
					aGlobalSupport.setAttribute("href", "/support/");
					{
						// img alt="サポート"
						var imgGlobalSupport = document.createElement("img");
						aGlobalSupport.appendChild(imgGlobalSupport);
						imgGlobalSupport.setAttribute("src", "/img/common/global/navi_04support_n.jpg" );
						imgGlobalSupport.setAttribute("alt", "サポート");
						imgGlobalSupport.setAttribute("title", "サポート");

					} // end of a
				} // end of li
				
				// li
				var liGlobalDownload = document.createElement("li");
				ulGlobal.appendChild(liGlobalDownload);
				{
					// a
					var aGlobalDownload = document.createElement("a");
					liGlobalDownload.appendChild(aGlobalDownload);
					aGlobalDownload.setAttribute("href", "/download/");
					{						
						// img alt="ダウンロード"
						var imgGlobalDownload = document.createElement("img");
						aGlobalDownload.appendChild(imgGlobalDownload);
						imgGlobalDownload.setAttribute("src", "/img/common/global/navi_05download_n.jpg" );
						imgGlobalDownload.setAttribute("alt", "ダウンロード");
						imgGlobalDownload.setAttribute("title", "ダウンロード");

					} // end of a
				} // end of li
				
				// li
				var liGlobalContact = document.createElement("li");
				ulGlobal.appendChild(liGlobalContact);
				{
					// a
					var aGlobalContact = document.createElement("a");
					liGlobalContact.appendChild(aGlobalContact);
					aGlobalContact.setAttribute("href", "/contact/");
					{
						// img alt="お問い合わせ・購入"
						var imgGlobaContact = document.createElement("img");
						aGlobalContact.appendChild(imgGlobaContact);
						imgGlobaContact.setAttribute("src", "/img/common/global/navi_06contact_n.jpg" );
						imgGlobaContact.setAttribute("alt", "お問い合わせ・購入");
						imgGlobaContact.setAttribute("title", "お問い合わせ・購入");

					 } // end of a
				} // end of li
				
				// li
				var liGlobalCompany = document.createElement("li");
				ulGlobal.appendChild(liGlobalCompany);
				{
					// a
					var aGlobalCompany = document.createElement("a");
					liGlobalCompany.appendChild(aGlobalCompany);
					aGlobalCompany.setAttribute("href", "/company/");
					{
						// img alt="会社概要"
						var imgGlobalCompany = document.createElement("img");
						aGlobalCompany.appendChild(imgGlobalCompany);
						imgGlobalCompany.setAttribute("src", "/img/common/global/navi_07company_n.jpg" );
						imgGlobalCompany.setAttribute("alt", "会社概要");
						imgGlobalCompany.setAttribute("title", "会社概要");

					} // end of a
				} // end of li
			} // end of ul
		}// end of div id="global"
	} //
