function Title(theTitle)  {
  document.write("<div style='text-align:center;margin-top:-105px; margin-bottom: 65px'><h1>" + theTitle + "</h1></div>");
}

function DisplayMenu(option)  {

if (option=="ind")  {
  document.write("<div style='text-align:center;'><img src='welcome.gif' style='margin-top:0px;'></div>");
}
else  {
  document.write("<img src='jameslogo.gif'>");
  document.write("<br>");
}

document.write(
"<table style='border-style:solid; border-width:1px; border-color:black;" +
"width:100%; height:20px;'>" +
"<tr align='center' bgcolor='lightgrey'>" +
"<td id='ind' class='border'><a href='index.html' class='menu' id='ind2'>Home</a></td>" +

"<td id='mod' class='border'><a href='modifications.html' class='menu'id='mod2'>Modifications</a></td>" +
"<td id='res' class='border'><a href='restoration.html' class='menu' id='res2'>Restoration</a></td>" +
"<td id='faq' class='border'><a href='faq.html' class='menu' id='faq2'>FAQ</a></td>" +
"<td id='lin' class='border'><a href='links.html' class='menu' id='lin2'>Links</a></td>" +
"<td id='con' class='border'><a href='contactusII.html' class='menu' id='con2'>Contact Us</a></td>" +
"</tr>" +
"</table>"
);

var cellColor="lightblue";
var activeColor="black";

if(option=="ind") {
  document.getElementById("ind").style.backgroundColor=cellColor;
  document.getElementById("ind2").style.color=activeColor;
}

if(option=="pro") {
  document.getElementById("pro").style.backgroundColor=cellColor;
  document.getElementById("pro2").style.color=activeColor;
}

if(option=="mod") {
  document.getElementById("mod").style.backgroundColor=cellColor;
  document.getElementById("mod2").style.color=activeColor;
}

if(option=="res") {
  document.getElementById("res").style.backgroundColor=cellColor;
  document.getElementById("res2").style.color=activeColor;
}

if(option=="faq") {
  document.getElementById("faq").style.backgroundColor=cellColor;
  document.getElementById("faq2").style.color=activeColor;
}

if(option=="lin") {
  document.getElementById("lin").style.backgroundColor=cellColor;
  document.getElementById("lin2").style.color=activeColor;
}

if(option=="con") {
  document.getElementById("con").style.backgroundColor=cellColor;
  document.getElementById("con2").style.color=activeColor;
}

if (option != "ind")  {
  if(option=="pro") Title("Products");
  if(option=="mod") Title("Modifications");
  if(option=="res") Title("Restoration");
  if(option=="faq") Title("FAQ");
  if(option=="lin") Title("Links");
  if(option=="con") Title("Contact Us");
}

}


