// JavaScript Document
<!--
document.write('<ul>');
var str = document.title; // Get webage title

if (str.indexOf('ATMs & Branches -')>=0) { // if title equal to value
	document.write('<li><a href="#" class="selected">ATM & Branches</a></li>'); // Highlight option
} else {
	document.write('<li><a href="#" onclick=window.open("/branch-atm-locator/atm/atmbranches/en/","","width=680,height=700,scrollbars=1,resizable=1,location=0,toolbar=0,location=0,menubar=0,status=1")>ATM & Branches</a></li>'); // Normal option
}
<!-- 2 -->
if (str.indexOf('ATM & Branch iPhone Application')>=0) { // if title equal to value
	document.write('<li><a href="#" class="selected">ATM & Branch iPhone Application</a></li>'); // Highlight option
} else {
	document.write('<li><a href="/iphone/en/index.html">ATM & Branch iPhone Application</a></li>'); // Normal option
}

<!-- 3 -->
if (str.indexOf('Jetco ATM locations')>=0) { // if title equal to value
	document.write('<li><a href="#" class="selected">Jetco ATM locations</a></li>'); // Highlight option
} else {
	document.write('<li><a href="/_redirect/en/jetco-list.html" target="_blank">Jetco ATM locations</a></li>'); // Normal option
}
<!-- 3 -->
if (str.indexOf('Regular Maintenance Schedule')>=0) { // if title equal to value
	document.write('<li><a href="#" class="selected">Regular Maintenance Schedule</a></li>'); // Highlight option
} else {
	document.write('<li><a href="/branch-atm-locator/maintenance/en/index.html" target="_blank">Regular Maintenance Schedule</a></li>'); // Normal option
}


document.write('</ul>');
-->
