// JavaScript Documentif (document.images) {	// 設定開始（使用する画像を設定してください）	// h_eng	var h_engon = new Image();	h_engon.src = "../common/images/h_eng_on.gif";	var h_engoff = new Image();	h_engoff.src = "../common/images/h_eng.gif";		// h_ja	var h_jaon = new Image();	h_jaon.src = "../common/images/h_ja_on.gif";	var h_jaoff = new Image();	h_jaoff.src = "../common/images/h_ja.gif";		// g_top	var g_topon = new Image();	g_topon.src = "../common/images/g_top_on.gif";	var g_topoff = new Image();	g_topoff.src = "../common/images/g_top.gif";	// h_contact	var h_contacton = new Image();	h_contacton.src = "../common/images/h_contact_on.gif";	var h_contactoff = new Image();	h_contactoff.src = "../common/images/h_contact.gif";		// g_message	var g_messageon = new Image();	g_messageon.src = "../common/images/g_message_on.gif";	var g_messageoff = new Image();	g_messageoff.src = "../common/images/g_message.gif";		// g_program	var g_programon = new Image();	g_programon.src = "../common/images/g_program_on.gif";	var g_programoff = new Image();	g_programoff.src = "../common/images/g_program.gif";			// g_ws	var g_wson = new Image();	g_wson.src = "../common/images/g_ws_on.gif";	var g_wsoff = new Image();	g_wsoff.src = "../common/images/g_ws.gif";		// g_lodging	var g_lodgingon = new Image();	g_lodgingon.src = "../common/images/g_lodging_on.gif";	var g_lodgingoff = new Image();	g_lodgingoff.src = "../common/images/g_lodging.gif";		// g_appli	var g_applion = new Image();	g_applion.src = "../common/images/g_appli_on.gif";	var g_applioff = new Image();	g_applioff.src = "../common/images/g_appli.gif";	// g_download	var g_downloadon = new Image();	g_downloadon.src = "../common/images/g_download_on.gif";	var g_downloadoff = new Image();	g_downloadoff.src = "../common/images/g_download.gif";	// g_blog	var g_blogon = new Image();	g_blogon.src = "../common/images/g_blog_on.gif";	var g_blogoff = new Image();	g_blogoff.src = "../common/images/g_blog.gif";	// g_access	var g_accesson = new Image();	g_accesson.src = "../common/images/g_access_on.gif";	var g_accessoff = new Image();	g_accessoff.src = "../common/images/g_access.gif";		// archive	var archiveon = new Image();	archiveon.src = "../common/images/btn_archive_on.gif";	var archiveoff = new Image();	archiveoff.src = "../common/images/btn_archive.gif";		// gotoform	var gotoformon = new Image();	gotoformon.src = "../common/images/btn_gotoform_on.gif";	var gotoformoff = new Image();	gotoformoff.src = "../common/images/btn_gotoform.gif";		// ws01	var ws01on = new Image();	ws01on.src = "../common/images/btn_ws01_on.jpg";	var ws01off = new Image();	ws01off.src = "../common/images/btn_ws01.jpg";		// ws02	var ws02on = new Image();	ws02on.src = "../common/images/btn_ws02_on.jpg";	var ws02off = new Image();	ws02off.src = "../common/images/btn_ws02.jpg";		// ws03	var ws03on = new Image();	ws03on.src = "../common/images/btn_ws03_on.jpg";	var ws03off = new Image();	ws03off.src = "../common/images/btn_ws03.jpg";		// ge_top	var ge_topon = new Image();	ge_topon.src = "../common/images/ge_top_on.gif";	var ge_topoff = new Image();	ge_topoff.src = "../common/images/ge_top.gif";		// ge_message	var ge_messageon = new Image();	ge_messageon.src = "../common/images/ge_message_on.gif";	var ge_messageoff = new Image();	ge_messageoff.src = "../common/images/ge_message.gif";		// ge_program	var ge_programon = new Image();	ge_programon.src = "../common/images/ge_program_on.gif";	var ge_programoff = new Image();	ge_programoff.src = "../common/images/ge_program.gif";			// ge_ws	var ge_wson = new Image();	ge_wson.src = "../common/images/ge_ws_on.gif";	var ge_wsoff = new Image();	ge_wsoff.src = "../common/images/ge_ws.gif";		// ge_lodging	var ge_lodgingon = new Image();	ge_lodgingon.src = "../common/images/ge_lodging_on.gif";	var ge_lodgingoff = new Image();	ge_lodgingoff.src = "../common/images/ge_lodging.gif";		// ge_appli	var ge_applion = new Image();	ge_applion.src = "../common/images/ge_appli_on.gif";	var ge_applioff = new Image();	ge_applioff.src = "../common/images/ge_appli.gif";	// ge_download	var ge_downloadon = new Image();	ge_downloadon.src = "../common/images/ge_download_on.gif";	var ge_downloadoff = new Image();	ge_downloadoff.src = "../common/images/ge_download.gif";	// ge_blog	var ge_blogon = new Image();	ge_blogon.src = "../common/images/ge_blog_on.gif";	var ge_blogoff = new Image();	ge_blogoff.src = "../common/images/ge_blog.gif";	// ge_access	var ge_accesson = new Image();	ge_accesson.src = "../common/images/ge_access_on.gif";	var ge_accessoff = new Image();	ge_accessoff.src = "../common/images/ge_access.gif";		//設定終了}// ポイント時の処理function On(name) {	if (document.images) {		document.images[name].src = eval(name + 'on.src');	}}// 放した時の処理function Off(name) {	if (document.images) {		document.images[name].src = eval(name + 'off.src');	}}