﻿function navMen(lOc){
if (lOc!="home"){
document.write ("<a href='index.html'>home</a>");
}else{
document.write ("home");
}

document.write(" • ");

if (lOc!="profile"){
document.write ("<a href='profile.html'>attorney profile</a>");
}else{
document.write ("attorney profile");
}

document.write(" • ");

if (lOc!="practice"){
document.write ("<a href='practice.html'>practice</a>");
}else{
document.write ("practice");
}

document.write(" • ");

if (lOc!="directions"){
document.write ("<a href='directions.html'>directions</a>");
}else{
document.write ("directions");
}
}