/*********************************************
JavaScript Code

Author: Brendan Parker
Project: TRiO
Date: August 2007
Function: Displays left navigation.
*********************************************/

var protocol = window.location.protocol;
var path = window.location.pathname;
var separator = (protocol == "file:" && path.indexOf("/", 1) == -1 ? "\\" :
"/");
var path = window.location.pathname;
var file = path.substring(path.lastIndexOf(separator) + 1);
//document.write(file);

if      (file == "index.html")         {document.write("<img src='headers/00d.gif' alt='' />");}
else if (file == "qualifications.html"){document.write("<img src='headers/01d.gif' alt='' />");}
else if (file == "academic.html")      {document.write("<img src='headers/02d.gif' alt='' />");}
else if (file == "math.html")          {document.write("<img src='headers/03d.gif' alt='' />");}
else if (file == "counseling.html")    {document.write("<img src='headers/04d.gif' alt='' />");}
else if (file == "enrichment.html")    {document.write("<img src='headers/05d.gif' alt='' />");}
else if (file == "staff.html" || file == "law.html" || file == "watson.html" || file == "bernhart.html"|| file == "quinn.html" )
					         {document.write("<img src='headers/06d.gif' alt='' />");}
else if (file == "otherservices.html") {document.write("<img src='headers/07d.gif' alt='' />");}
else if (file == "contact.html")       {document.write("<img src='headers/08d.gif' alt='' />");}
else if (file == "application.html")       {document.write("<img src='headers/11d.gif' alt='' />");}

else                                   {document.write("<img src='headers/00d.gif' alt='' />");}