// JavaScript Document
function topSecondaryNav()
{
	document.writeln('<div id="dropNavContainer">');
	document.writeln('<ul id="sddm">');
	document.writeln('    <li><a href="security-overview.html">Security Overview</a></li>');
	document.writeln('    <li><a href="security-customer-security.html" ');
	document.writeln('        onmouseover="mopen(\'m2\')" ');
	document.writeln('        onmouseout="mclosetime()">Customer Security</a>');
	document.writeln('        <div id="m2" ');
	document.writeln('            onmouseover="mcancelclosetime()" ');
	document.writeln('            onmouseout="mclosetime()">');
	document.writeln('        <a href="security-customer-privacy.html">Customer Privacy</a>');
	document.writeln('        <a href="security-online-privacy.html">Online Privacy</a>');
	document.writeln('        <a href="security-privacy-officer.html">Privacy Officer</a>');
	document.writeln('        </div>');
	document.writeln('    </li>');
	document.writeln('    <li><a href="security-mtfx-compliance.html" ');
	document.writeln('        onmouseover="mopen(\'m3\')" ');
	document.writeln('        onmouseout="mclosetime()">MTFX Compliance</a>');
	document.writeln('        <div id="m3" ');
	document.writeln('            onmouseover="mcancelclosetime()" ');
	document.writeln('            onmouseout="mclosetime()">');
	document.writeln('        <a href="security-know-your-client.html">Know Your Client &amp; Due Diligence</a>');
	document.writeln('        <a href="security-regulatory-reporting.html">Regulatory Reporting</a>');
	document.writeln('        <a href="security-compliance-officer.html">Compliance Officer</a>');
	document.writeln('        </div>');
	document.writeln('    </li>');
	document.writeln('    <li><a href="security-customer-feedback-form.asp" ');
	document.writeln('        onmouseover="mopen(\'m4\')" ');
	document.writeln('        onmouseout="mclosetime()">Forms</a>');
	document.writeln('        <div id="m4" ');
	document.writeln('            onmouseover="mcancelclosetime()" ');
	document.writeln('            onmouseout="mclosetime()"> ');
	document.writeln('            <a href="security-customer-feedback-form.asp">Customer Feedback Form</a>');
	document.writeln('            <a href="security-customer-callback-form.asp">Customer Callback Form</a>');
	document.writeln('        </div>');
	document.writeln('    </li>');
	document.writeln('</ul>');
	document.writeln('<div style="clear:both"></div>');
	document.writeln('</div>');
}
topSecondaryNav();