// JavaScript Document
<!--
document.write('<ul>');
var str = document.title; // Get webage title
if (str.indexOf('Services that Define Your Status')>=0) { // if title equal to value
	document.write('<li><a href="/ph/priority-banking/services-that-define/en/" class="selected">Services that Define Your Status</a>'); // Highlight option
} else {
	document.write('<li><a href="/ph/priority-banking/services-that-define/en/">Services that Define Your Status</a>'); // Normal option
}
if (str.indexOf('Services that Provide you Total Convenience and Flexibility')>=0) { // if title equal to value
	document.write('<li><a href="/ph/priority-banking/services-that-provide/en/" class="selected">Services that Provide you Total Convenience and Flexibility</a>'); // Highlight option
} else {
	document.write('<li><a href="/ph/priority-banking/services-that-provide/en/">Services that Provide you Total Convenience and Flexibility</a>'); // Normal option
}
if (str.indexOf('Products Designed Specially for you')>=0) { // if title equal to value
	document.write('<li><a href="/ph/priority-banking/products-designed/en/" class="selected">Products Designed Specially for you</a></li>'); // Highlight option
} else {
	document.write('<li><a href="/ph/priority-banking/products-designed/en/">Products Designed Specially for you</a></li>'); // Normal option
}
if (str.indexOf('Exclusive Privileges')>=0) { // if title equal to value
	document.write('<li><a href="/ph/priority-banking/exclusive-privileges/en/" class="selected">Exclusive Privileges</a></li>'); // Highlight option
} else {
	document.write('<li><a href="/ph/priority-banking/exclusive-privileges/en/">Exclusive Privileges</a></li>'); // Normal option
}

document.write('</ul>');
-->