// JavaScript Document
<!--
document.write('<ul>');
var str = document.title; // Get webage title
if (str.indexOf('เครือข่ายในประเทศและระหว่างประเทศ')>=0) { // if title equal to value
	document.write('<li><a href="/sme-banking/other-value-services/local-international-network/th/" class="selected">เครือข่ายในประเทศและระหว่างประเทศ</a></li>'); // Highlight option
} else {
	document.write('<li><a href="/sme-banking/other-value-services/local-international-network/th/">เครือข่ายในประเทศและระหว่างประเทศ</a></li>'); // Normal option
}
if (str.indexOf('ผู้จัดการ - บริหารทางการเงินธุรกิจ')>=0) { // if title equal to value
	document.write('<li><a href="/sme-banking/other-value-services/professional-sme-relationship-manager/th/" class="selected">ผู้จัดการ - บริหารทางการเงินธุรกิจ </a></li>'); // Highlight option
} else {
	document.write('<li><a href="/sme-banking/other-value-services/professional-sme-relationship-manager/th/">ผู้จัดการ - บริหารทางการเงินธุรกิจ </a></li>'); // Normal option
}
if (str.indexOf('บริการให้คำปรึกษาด้านธุรกิจการค้า')>=0) { // if title equal to value
	document.write('<li><a href="/sme-banking/other-value-services/trade-service-advisory/th/" class="selected">บริการให้คำปรึกษาด้านธุรกิจการค้า</a></li>'); // Highlight option
} else {
	document.write('<li><a href="/sme-banking/other-value-services/trade-service-advisory/th/">บริการให้คำปรึกษาด้านธุรกิจการค้า</a></li>'); // Normal option
}
document.write('</ul>');
-->