// tree表示
function LeftMenu(tName)
{
	tMenu = document.getElementById(tName).style;
	if (tMenu.display == 'none') tMenu.display = "block"; else tMenu.display = "none";
}


// arrow.gifの切り替え
function arrowchange(param)
{
	num = 0;
	if (document.getElementById('myIMG'+param).src.indexOf("0") > 0) {
		num = 1;
	}
	document.getElementById('myIMG'+param).src = "../../image/menu"+num+".jpg";
}


// top menu
document.write('<TABLE cellpadding="0" width="170">');
document.write('<TBODY>');
document.write('<TR>');
document.write('<TD class="bodycopy" width="5"><IMG src="http://www.oracle.co.jp/image/spacer.gif" width="5" height="1" border="0"></TD>');
document.write('<TD colspan="2" class="bodycopy"><B>IR（投資家向け情報）</B></TD>');
document.write('</TR>');
document.write('<TR>');
document.write('<TD HEIGHT="1" BGCOLOR="#999999" class="bodycopy" colspan="3"><IMG SRC="http://www.oracle.co.jp/image/spacer.gif" BORDER=0 ALT="" HEIGHT="1" width="160">');
document.write('</TD>');
document.write('</TR>');

document.write('<TR>');
document.write('<TD width="5"></TD>');
document.write('<TD colspan="2" valign="top" class="left_menu_content2">');
document.write('<div id="irTree" style="display:block; margin-left : 16px; line-height : 15px;"><a href="index.html" class="leftmenu">What&rsquo;s New</a><br>');
document.write('<a href="caution.html" class="leftmenu">IRポリシー・注意事項</a><br>');
document.write('<a href="highlight.html" class="leftmenu">業績ハイライト</a><br>');
document.write('<a href="gyoseki.html" class="leftmenu">決算・財務情報</a><br>');
document.write('<a href="securities.html" class="leftmenu">有価証券報告書</a><br>');
document.write('<a href="accounts.html" class="leftmenu">電子公告</a><br>');
document.write('<a href="calendar.html" class="leftmenu">IRカレンダー</a><br>');
document.write('<a href="stock.html" class="leftmenu">株式情報・株式事務手続</a><br>');
document.write('<a href="dividend.html" class="leftmenu">配当金</a><br>');
document.write('<a href="shareholder.html" class="leftmenu">株主総会</a><br>');
document.write('<a href="tsushin.html" class="leftmenu">株主通信</a><br>');
document.write('<a href="link.html" class="leftmenu">参考リンク集</a><br>');
document.write('<a href="faq.html" class="leftmenu">FAQ/よくあるご質問</a><br>');
document.write('<a href="inq.html" class="leftmenu">お問い合わせ</a><br>');
document.write('<a href="english/" class="leftmenu">Investor Relations (English)</a><br>');
document.write('<a href="http://www.oracle.com/corporate/investor_relations/" target="_blank" class="leftmenu">Oracle Corporation(米) IR情報（英語）</a><br>');
document.write('</div>');
document.write('</TD>');
document.write('</TR>');

document.write('<TR>');
document.write('<TD HEIGHT="3" class="bodycopy" colspan="3"><IMG SRC="http://www.oracle.co.jp/image/spacer.gif" BORDER=0 ALT="" HEIGHT="1">');
document.write('</TD>');
document.write('</TR>');
document.write('</TABLE>');
document.write('<BR>');