var filename = location.pathname.substring(location.pathname.lastIndexOf('/')+1);

//--------------------------------------------------------------------------------------

if (filename=="index.html"){
	document.write('<span>Home</span>');
} else {
	document.write('<a href="index.html">Home</a>');
}

//--------------------------------------------------------------------------------------

if (filename=="zamtek-about-us.html"){
	document.write('<span>About Us</span>');
} else {
	document.write('<a href="zamtek-about-us.html">About Us</a>');
}

//--------------------------------------------------------------------------------------

if (filename=="zamtek-products.html"){
	document.write('<span>Products</span>');
} else {
	document.write('<a href="zamtek-products.html">Products</a>');
}

//--------------------------------------------------------------------------------------

if (filename=="zamtek-values.html"){
	document.write('<span>Inspiration</span>');
} else {
	document.write('<a href="zamtek-values.html">Inspiration</a>');
}

//--------------------------------------------------------------------------------------

if (filename=="zamtek-portfolio.html"){
	document.write('<span>Portfolio</span>');
} else {
	document.write('<a href="zamtek-portfolio.html">Portfolio</a>');
}

//--------------------------------------------------------------------------------------

if (filename=="zamtek-careers.html"){
	document.write('<span>Careers</span>');
} else {
	document.write('<a href="zamtek-job-openings.html">Careers</a>');
}

//--------------------------------------------------------------------------------------

if (filename=="zamtek-sitemap.html"){
	document.write('<span>Site map</span>');
} else {
	document.write('<a href="zamtek-sitemap.html">Site map</a>');
}

//--------------------------------------------------------------------------------------

if (filename=="zamtek-contact-us.html"){
	document.write('<span>Contact us</span>');
} else {
	document.write('<a href="zamtek-contact.html">Contact us</a>');
}


