// JavaScript Document
<!--
document.write('<ul>');
var str = document.title; // Get webage title
if (str.indexOf('Help Me Choose the Right Account')>=0) { // if title equal to value
	document.write('<li><a href="/ph/personal-banking/deposits/help-me-choose-acc/en/" class="selected">Help Me Choose the Right Account</a></li>'); // Highlight option
} else {
	document.write('<li><a href="/ph/personal-banking/deposits/help-me-choose-acc/en/">Help Me Choose the Right Account</a></li>'); // Normal option
}
document.write('</ul>');
-->