// JavaScript Document
  
function displayInfo(i) {
    if (i == "home") { 
      document.getElementById('navInfo').innerHTML = "<h1>Welcome</h1><p class='end'>Return to the homepage, your starting place of our website.</p>";
	} else if (i == "wDWO") {
	  document.getElementById('navInfo').innerHTML = "<h1>What Do We Offer?</h1><p class='end'>Find out more information of what we do, and what services we offer.</p>";
	} else if (i == "pG") {
	  document.getElementById('navInfo').innerHTML = "<h1>Photo Galery</h1><p class='end'>Look at a photo gallery of our previous completed work.</p>";
	} else if (i == "tC") {
	  document.getElementById('navInfo').innerHTML = "<h1>Terms & Conditions</h1><p class='end'>Check out our terms & conditions, make sure your in the know.</p>";
	} else if (i == "cU") {
	  document.getElementById('navInfo').innerHTML = "<h1>Contact Us</h1><p class='end'>Got a question? Want to contact us? Need to know something? Click here.</p>";
	} else if (i == "welcome") {
	  document.getElementById('navInfo').innerHTML = "<h1>A New Improved Website</h1><p class='end'>TFC Online has implemented an improved website, enjoy!</p>";
	}
}
