// 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/deposit-cash-management/current-account/th/" class="selected">เงินฝากกระแสรายวัน</a></li>'); // Highlight option
} else {
	document.write('<li><a href="/sme-banking/deposit-cash-management/current-account/th/">เงินฝากกระแสรายวัน</a></li>'); // Normal option
}
if (str.indexOf('เงินฝากออมทรัพย์')>=0) { // if title equal to value
	document.write('<li><a href="/sme-banking/deposit-cash-management/savings-account/th/" class="selected">เงินฝากออมทรัพย์ </a></li>'); // Highlight option
} else {
	document.write('<li><a href="/sme-banking/deposit-cash-management/savings-account/th/">เงินฝากออมทรัพย์ </a></li>'); // Normal option
}
if (str.indexOf('เงินฝากประจำ')>=0) { // if title equal to value
	document.write('<li><a href="/sme-banking/deposit-cash-management/sme-time-deposit-account/th/" class="selected">เงินฝากประจำ</a></li>'); // Highlight option
} else {
	document.write('<li><a href="/sme-banking/deposit-cash-management/sme-time-deposit-account/th/">เงินฝากประจำ</a></li>'); // Normal option
}
if (str.indexOf('บริการด้านการบริหารเงินสด')>=0) { // if title equal to value
	document.write('<li><a href="/sme-banking/deposit-cash-management/cash-management/th/" class="selected">บริการด้านการบริหารเงินสด</a></li>'); // Highlight option
} else {
	document.write('<li><a href="/sme-banking/deposit-cash-management/cash-management/th/">บริการด้านการบริหารเงินสด</a></li>'); // Normal option
}

document.write('</ul>');
-->