// JavaScript Document
	var gov
	var dir

	gov = "Jeremiah W. (Jay) Nixon";                                      // Specify Governor's name in quotes.
	dir = "Lawrence G. Rebman";                                      // Specify DOLIR Director's name in quotes.

	document.write("<a href=\"http://governor.mo.gov\" title=\"Missouri Governors Web Page\" class=\"topright\">" + gov + ", Governor</a>&nbsp;<br />");
	document.write("<a href=\"/aboutus.htm\" title=\"DOLIR About Us\" class=\"topright\">" + dir + ", Director</a>&nbsp;<br /><br />");

