openObject = 't0';
function openSubNavi(id) {
	if (document.getElementById(id).style.display == 'block') {
		document.getElementById(id).style.display = 'none';
		openObject = 't0';
	} else {
		if (document.getElementById(openObject)) { document.getElementById(openObject).style.display = 'none'; }
		document.getElementById(id).style.display = 'block';
		openObject = id;
	}
}
function subNaviOver(id) { 
	document.getElementById(id).style.background = 'url(\'subnavi_over.gif\') no-repeat'; 
}
function subNaviOut(id) { 
	document.getElementById(id).style.background = 'url(\'subnavi_normal.gif\') no-repeat'; 
}
function naviOver(id) { 
	document.getElementById(id+'t').style.background = 'url(\'topnavi_over.gif\') no-repeat'; 
}
function naviOut(id) { 
	document.getElementById(id+'t').style.background = 'url(\'topnavi_normal.gif\') no-repeat'; 
}
function goToURL(url) {
	window.location=url;
}
