/* This file writes the graphical header for each page on the Polygraph site.
   It uses JavaScript, but it's not that hard to follow.  It's a table - someday
   this should change to a list and use pure CSS for layout, but I can't get it
   to look OK on all browsers, so I'm giving up.
   
   To add or change the contents of the header: Just add the content you want -
   it's probably easiest to copy an existing entry.  It's just like regular
   HTML, except that the whole thing must be contained in a document.write()
   statement, which means that each line needs to be enclosed in single quotes
   and ended with a plus sign (except the last one).  I swear, this is easier
   than maintaining 20+ files, each with its own header!

   CHANGES MADE HERE MUST BE REFLECTED IN header.html!!
*/

document.write(// Start table and insert logo
	       '<div id=headTable><table><tbody><tr><td id=Logo valign="top" width="250px">'+
	       '<a href="index.html"><img src="logo.gif"'+
	       'alt="POLYGRAPH--An International Journal of Culture and Politics">'+
	       '</a></td><td><table><tbody><tr>'+       
		   // Begin 21
	       '<td valign="top"><a href="poly21.html"><img src="poly21.gif" alt="Issue 21 cover"></a></td>'+
	       '<td valign="top"><b>Issue 21</b><br><a href="poly21.html">'+
	       'Study, Students, Universities</a></td>'+
	       // Begin 19/20
	       '<td valign="top"><a href="poly1920.html"><img src="poly1920.gif" alt="Issue 19/20 cover"></a></td>'+
	       '<td valign="top"><b>Issue 19/20</b><br><a href="poly1920.html">'+
	       'Augustine and Late Secularism</a></td>'+
		   // Begin 18
	       '<td valign="top"><a href="poly18.html"><img src="poly18.gif" alt="Issue 18 cover"></a></td>'+
	       '<td valign="top"><b>Issue 18</b><br><a href="poly18.html">'+
	       'Biopolitics, Narrative, Temporality</a></td>'+
	       // Begin old/back issues
	       '<td valign="top"><a href="old.html"><img src="poly10.gif" alt="Back issue cover"></a></td>'+
	       '<td valign="top"><b>Back Issues</b></td>'+
	       // Close all the cells/rows/tables/divs
	       '</tr></tbody></table></td></tr></tbody></table></div>'
	       )

