function tabbar()
{
document.write('<table cellpadding="0" cellspacing="0" border="0"><tr>');
document.write('<td>');
document.write('<a href="/it/aboutus/homepage.htm" target="_self">'); 
	if (isCurrent("/it/aboutus/homepage.htm")) {
		document.write('<img src="/img/italy/chi_siamo_on_tcm54-3378.gif" title="Chi siamo" alt="Chi siamo" border="0">');
		} else {
		document.write('<img src="/img/italy/chi_siamo_off_tcm54-3379.gif" title="Chi siamo" alt="Chi siamo" border="0">');
		} 
document.write('</a>');document.write('</td>');
document.write('<td>');
document.write('<a href="/it/corporate/corporate.htm" target="_self">'); 
	if (isCurrent("/it/corporate/corporate.htm")) {
		document.write('<img src="/img/italy/clienti_aziende_on_tcm54-3380.gif" title="Clienti aziende" alt="Clienti aziende" border="0">');
		} else {
		document.write('<img src="/img/italy/clienti_aziende_off_tcm54-3381.gif" title="Clienti aziende" alt="Clienti aziende" border="0">');
		} 
document.write('</a>');document.write('</td>');
document.write('<td>');
document.write('<a href="/it/individuals/individuals.htm" target="_self">'); 
	if (isCurrent("/it/individuals/individuals.htm")) {
		document.write('<img src="/img/italy/clienti_privati_on_tcm54-3382.gif" title="Clienti privati" alt="Clienti privati" border="0">');
		} else {
		document.write('<img src="/img/italy/clienti_privati_off_tcm54-3383.gif" title="Clienti privati" alt="Clienti privati" border="0">');
		} 
document.write('</a>');document.write('</td>');
document.write('<td>');
document.write('<a href="/it/partners/partners.htm" target="_self">'); 
	if (isCurrent("/it/partners/partners.htm")) {
		document.write('<img src="/img/italy/partners_on_tcm54-3385.gif" title="Partners & Friends" alt="Partners & Friends" border="0">');
		} else {
		document.write('<img src="/img/italy/partners_off_tcm54-3384.gif" title="Partners & Friends" alt="Partners & Friends" 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
	}
}