/*
 *
 *      トップページ　製品タイトル
 *
 */

function OnMouseMenuTop(id){
	if (!document.getElementById) { return; }			// DOM Support Check
	elm = document.getElementById(id);
	elm.getAttributeNode("class").value = "title_over";
}
function OutMouseMenuTop(id){
	if (!document.getElementById) { return; }			// DOM Support Check
	elm = document.getElementById(id);
	elm.getAttributeNode("class").value = "title";
}

/*
 *
 *      フッター
 *
 */
function writeFooter(){
	document.write("<table border=0 cellpadding=0 cellspacing=0><tr>");
	document.write("<td class=left-space><img src=\"http://www.act-inc.jp/img/s.png\" class=\"left-space\"></td>");
	document.write("<td class=copyright>Copyright 1995-2010 Advanced Core Technologies, Inc.　All Rights Reserved.</td></tr></table>");
}

