function tabbar()
{
document.write('<table cellpadding="0" cellspacing="0" border="0"><tr>');
document.write('<td>');
document.write('<a href="/de/aboutus/homepage.htm" target="_self">'); 
	if (isCurrent("/de/aboutus/homepage.htm")) {
		document.write('<img src="/img/switzerland/about_us_ON_tcm102-3378.gif" title="über uns" alt="über uns" border="0">');
		} else {
		document.write('<img src="/img/switzerland/about_us_OFF_tcm102-3379.gif" title="über uns" alt="über uns" border="0">');
		} 
document.write('</a>');document.write('</td>');
document.write('<td>');
document.write('<a href="/de/corporate/corporate.htm" target="_self">'); 
	if (isCurrent("/de/corporate/corporate.htm")) {
		document.write('<img src="/img/switzerland/corporate_ON_tcm102-3380.gif" title="Geschäftspartner" alt="Geschäftspartner" border="0">');
		} else {
		document.write('<img src="/img/switzerland/corporate_OFF_tcm102-3381.gif" title="Geschäftspartner" alt="Geschäftspartner" border="0">');
		} 
document.write('</a>');document.write('</td>');
document.write('<td>');
document.write('<a href="/de/individuals/individuals.htm" target="_self">'); 
	if (isCurrent("/de/individuals/individuals.htm")) {
		document.write('<img src="/img/switzerland/individuals_ON_tcm102-3382.gif" title="Privatkunden" alt="Privatkunden" border="0">');
		} else {
		document.write('<img src="/img/switzerland/individuals_OFF_tcm102-3383.gif" title="Privatkunden" alt="Privatkunden" border="0">');
		} 
document.write('</a>');document.write('</td>');
document.write('<td>');
document.write('<a href="/de/partners/partners.htm" target="_self">'); 
	if (isCurrent("/de/partners/partners.htm")) {
		document.write('<img src="/img/switzerland/partners_ON_tcm102-3385.gif" title="Partner" alt="Partner" border="0">');
		} else {
		document.write('<img src="/img/switzerland/partners_OFF_tcm102-3384.gif" title="Partner" alt="Partner" 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
	}
}