function tabbar()
{
document.write('<table cellpadding="0" cellspacing="0" border="0"><tr>');
document.write('<td>');
document.write('<a href="/nl/aboutus/homepage.htm" target="_self">'); 
	if (isCurrent("/nl/aboutus/homepage.htm")) {
		document.write('<img src="/img/belgium/about_us_on_tcm71-3378.gif" title="Over ons" alt="Over ons" border="0">');
		} else {
		document.write('<img src="/img/belgium/about_us_on_tcm71-3379.gif" title="Over ons" alt="Over ons" border="0">');
		} 
document.write('</a>');document.write('</td>');
document.write('<td>');
document.write('<a href="/nl/corporate/corporate.htm" target="_self">'); 
	if (isCurrent("/nl/corporate/corporate.htm")) {
		document.write('<img src="/img/belgium/corporate_tcm71-3380.gif" title="Ondernemingen" alt="Ondernemingen" border="0">');
		} else {
		document.write('<img src="/img/belgium/corporate_tcm71-3381.gif" title="Ondernemingen" alt="Ondernemingen" border="0">');
		} 
document.write('</a>');document.write('</td>');
document.write('<td>');
document.write('<a href="/nl/individuals/individuals.htm" target="_self">'); 
	if (isCurrent("/nl/individuals/individuals.htm")) {
		document.write('<img src="/img/belgium/individuals_on_tcm71-3382.gif" title="Particulieren" alt="Particulieren" border="0">');
		} else {
		document.write('<img src="/img/belgium/individuals_off_tcm71-3383.gif" title="Particulieren" alt="Particulieren" border="0">');
		} 
document.write('</a>');document.write('</td>');
document.write('<td>');
document.write('<a href="/nl/partners/partners.htm" target="_self">'); 
	if (isCurrent("/nl/partners/partners.htm")) {
		document.write('<img src="/img/belgium/partners_on_tcm71-3385.gif" title="Partners" alt="Partners" border="0">');
		} else {
		document.write('<img src="/img/belgium/partners_off_tcm71-3384.gif" title="Partners" alt="Partners" border="0">');
		} 
document.write('</a>');document.write('</td>');
//#
document.write('</tr></table>');
}

function isCurrent(sUrl)
{

currentUrl = document.location.href;
currentPath = currentUrl.substr(0,currentUrl.lastIndexOf('/')+1);
sUrlPath = sUrl.substr(0,sUrl.lastIndexOf('/')+1);
sStartingFolder = '/aboutus/'

if (currentUrl.indexOf(sUrlPath) > 0)
	{
	return true
	}
	else
	{
	return false
	}
}