<!-- Hide this menu script from older browsers
//Remove everything left of the last instance of the substring to the start of the fullString 
function RemoveLeftSubstring(fullString, substring) { 
if (fullString.lastIndexOf(substring) == -1) { 
return ""; 
} else { 
return fullString.substring(fullString.lastIndexOf(substring)+1, fullString.length); 
} 
} 

{
var myUrl = location.href; 
var myChar1 = "/"; 

//Strip out everything before the last "/" 
var myFileName = RemoveLeftSubstring(myUrl, myChar1); 

document.write('&nbsp;&nbsp;|&nbsp;&nbsp;<a class="linkpage" href="Index.htm">Home</a>&nbsp;&nbsp;|&nbsp;&nbsp;')

if (myFileName == "Roland_BusinessOverview.htm")
	{
	document.write('<span class="currentpage">Business Overview</span>&nbsp;&nbsp;|&nbsp;&nbsp;');}
else
	{document.write('<a class="linkpage" href="Roland_BusinessOverview.htm">Business Overview</a>&nbsp;&nbsp;|&nbsp;&nbsp;');}

if (myFileName == "Roland_TranslationServices.htm")
	{
	document.write('<span class="currentpage">Services</span>&nbsp;&nbsp;|&nbsp;&nbsp;');}
else
	{document.write('<a class="linkpage" href="Roland_TranslationServices.htm">Services</a>&nbsp;&nbsp;|&nbsp;&nbsp;');}

if (myFileName == "Roland_ProfessionalTeam.htm")
	{
	document.write('<span class="currentpage">Our Team</span>&nbsp;&nbsp;|&nbsp;&nbsp;');}
else
	{document.write('<a class="linkpage" href="Roland_ProfessionalTeam.htm">Our Team</a>&nbsp;&nbsp;|&nbsp;&nbsp;');}

if (myFileName == "Roland_CareerOpportunities.htm")
	{
	document.write('<span class="currentpage">Career Opportunities</span>&nbsp;&nbsp;|&nbsp;&nbsp;');}
else
	{document.write('<a class="linkpage" href="Roland_CareerOpportunities.htm">Career Opportunities</a>&nbsp;&nbsp;|&nbsp;&nbsp;');}
}

// End hiding the script -->
