// JavaScript Document

function drawFooter(pageName){
	
	if (pageName == "index") document.write("Home | ");
	else document.write("<a href=\"index.html\" class=\"footer\">Home</a> | ");
	
	if (pageName == "services") document.write("Services | ");
	else document.write("<a href=\"services.html\" class=\"footer\">Services</a> | ");
	
	if (pageName == "clients") document.write("Clients | ");
	else document.write("<a href=\"clients.html\" class=\"footer\">Clients</a> | ");
	
	if (pageName == "about") document.write("About | ");
	else document.write("<a href=\"about.html\" class=\"footer\">About</a> | ");
	
	if (pageName == "contact") document.write("Contact");
	else document.write("<a href=\"contact.html\" class=\"footer\">Contact</a>");
	
	document.write("<br/>\&copy;2009 Onorati Construction Inc.");
}
