// JavaScript Document
// Open An Account Section

var topSectArr = section.split(".", 2);
var topSection = topSectArr[0] + "." + topSectArr[1];

document.write('<ul id="navLinks">');
if (topSection!="2.1") {
	document.write('<li><a href="/open_account/">Open An Account</a></li>');        
} else {
	document.write('<li><a href="/open_account/" class="on">Open An Account</a></li>');
}
if (topSection!="2.2") {
	document.write('<li><a href="/open_account/ac_openprint.cgi">Print Forms</a></li>');        
} else {
	document.write('<li><a href="/open_account/ac_openprint.cgi" class="on">Print Forms</a></li>');
}
if (topSection!="2.4") {
	document.write('<li><a href="/open_account/call.shtml">Call Us</a></li>');
	} else {
		document.write('<li><a href="/open_account/call.shtml" class="on">Call Us</a></li>');
}

if (topSection!="2.3") {
	document.write('<li><a href="/open_account/account_transfer.shtml">Transfer Your Account</a></li>');        
} else {
	document.write('<li><a href="/open_account/account_transfer.shtml" class="on">Transfer Your Account</a></li>');
}

document.write('</ul>');
