// JavaScript Document
function topSecondaryNav()
{
	document.writeln('<div id="dropNavContainer">');
	document.writeln('<ul id="sddm">');
	document.writeln('    <li><a href="newsroom-overview.html">FX News Room Overview</a></li>');
	document.writeln('    <li><a href="newsroom-todays-rates.html" ');
	document.writeln('        onmouseover="mopen(\'m2\')" ');
	document.writeln('        onmouseout="mclosetime()">FX Rates &amp; Indices</a>');
	document.writeln('        <div id="m2" ');
	document.writeln('            onmouseover="mcancelclosetime()" ');
	document.writeln('            onmouseout="mclosetime()">');
	document.writeln('        <a href="newsroom-todays-rates.html">Today\'s Rates</a>');
	document.writeln('        <a href="newsroom-market-indicies.html">Market Indices</a>');
	document.writeln('        </div>');
	document.writeln('    </li>');
	document.writeln('    <li><a href="newsroom-economic-calendar.asp">Economic Calendar</a></li>');
	document.writeln('    <li><a href="newsroom-breaking-business-news.html">Breaking Business News</a></li>');
	document.writeln('    <li><a href="newsroom-fx-forecasts.asp">FX Forecasts</a></li>');
	document.writeln('    <li><a href="newsroom-sms-messaging.asp">SMS Messaging</a></li>');
	document.writeln('</ul>');
	document.writeln('<div style="clear:both"></div>');
	document.writeln('</div>');
}
topSecondaryNav();