/*
Joshua Stough javascripts.
Inspired to varying degees by the javascripts 
of David Borland and Robert Broadhurst.
*/

function writeHeader(PageTitle, appropriate)
{
document.write("<head><title>");
document.write(PageTitle);
document.write("</title><link rel=\"stylesheet\" href=\"http://cs.unc.edu/~stough/style.css\"></style></head>");

  numLinks = 7;
  var linkNames = new Array(numLinks);
  var linkRef = new Array(numLinks);
  linkNames[0] = "Main";
  linkRef[0] = "http://cs.unc.edu/~stough/index.html";
  linkNames[1] = "Research";
  linkRef[1] = "http://cs.unc.edu/~stough/research.html";
  linkNames[2] = "Coursework";
  linkRef[2] = "http://cs.unc.edu/~stough/coursework.html";
  linkNames[3] = "Teaching";
  linkRef[3] = "http://cs.unc.edu/~stough/teaching.html";
  linkNames[4] = "Curriculum Vitae";
  linkRef[4] = "http://cs.unc.edu/~stough/stoughCV.html";
  linkNames[5] = "Personal";
  linkRef[5] = "http://cs.unc.edu/~stough/personal.html";
  linkNames[6] = "Miscellaneous";
  linkRef[6] = "http://cs.unc.edu/~stough/miscellaneous.html";
     
  
  document.write("<ul class=\"navbar\">");
  for (i = 0; i < numLinks; i++)
    {
      document.write("<li><a href=\"");
      document.write(linkRef[i]);
      document.write("\">");
      document.write(""+linkNames[i]+"");
      document.write("</a>");
    }
  document.write("</ul>");    

//document.write("<h1>Joshua Stough</h1><h2>Graduate Student/Research Assistant, <br/><a href=\"http://www.cs.unc.edu\">UNC-CH Computer Science</a></h2><HR>");    

document.write("<table border=\"0\" cellpadding=\"5\" cellspacing=\"0\" width=\"100%\">");

document.write("<tr><td><h2>Joshua Stough</h2><h3>Graduate Student/<br/>Research Assistant/<br/>Instructor,<br/><a href=\"http://www.unc.edu\">UNC-Chapel Hill</a>,<br/><a href=\"http://www.cs.unc.edu\">Computer Science</a></h3></td>");
//document.write("<td>Hello there.<img src=\"MiaAndMe.PNG\" alt=\"Mia and me.\" align=\"right\" height=\"100\"></td>");
//document.write("<td>" + "<img src=\"MiaAndMe.PNG\" alt=\"Mia and me.\" align=\"right\" height=\"100\">" + "</td>");
//document.write("<td>");
//alert("Hello world1.");
//document.write(getMainImage());
//document.write("Hello world.");
//document.write("</td>");
document.write("<td valign=\"right\" HEIGHT=\"100\">");
document.write(getMainImage(appropriate));
document.write("</td>");
//document.write("<img src=\"MiaAndMe.PNG\" alt=\"Mia and me.\" align=\"right\" height=\"100\></td>");

document.write("</tr></table><HR>");
}



