function preload_images()
{

  image1on = new Image();
  image1on.src = "/images/nav_on-01-01.gif";

  image2on = new Image();
  image2on.src = "/images/nav_on-02-01.gif";

  image3on = new Image();
  image3on.src = "/images/nav_on-03-01.gif";

  image4on = new Image();
  image4on.src = "/images/nav_on-04-01.gif";

  image5on = new Image();
  image5on.src = "/images/nav_on-05-01.gif";

  image6on = new Image();
  image6on.src = "/images/nav_on-06-01.gif";

  image7on = new Image();
  image7on.src = "/images/nav_on-07-01.gif";

  image8on = new Image();
  image8on.src = "/images/nav_on-08-01.gif";

  image97on = new Image();
  image97on.src = "/images/about_on.gif";

  image98on = new Image();
  image98on.src = "/images/what_we_do_on.gif";

  image99on = new Image();
  image99on.src = "/images/fresh_news_on.gif";


  image1off = new Image();
  image1off.src = "/images/nav_off-01-01.gif";

  image2off = new Image();
  image2off.src = "/images/nav_off-02-01.gif";

  image3off = new Image();
  image3off.src = "/images/nav_off-03-01.gif";

  image4off = new Image();
  image4off.src = "/images/nav_off-04-01.gif";

  image5off = new Image();
  image5off.src = "/images/nav_off-05-01.gif";

  image6off = new Image();
  image6off.src = "/images/nav_off-06-01.gif";

  image7off = new Image();
  image7off.src = "/images/nav_off-07-01.gif";

  image8off = new Image();
  image8off.src = "/images/nav_off-08-01.gif";

  image97off = new Image();
  image97off.src = "/images/about_off.gif";

  image98off = new Image();
  image98off.src = "/images/what_we_do_off.gif";

  image99off = new Image();
  image99off.src = "/images/fresh_news_off.gif";
}

function turnOn(imagename) {
  if (document.images) {
    document[imagename].src = eval(imagename + "on.src");
  }
}

function turnOff(imagename) {
  if (document.images) {
    document[imagename].src = eval(imagename + "off.src");
  }
}

function nav_menu()
{
  document.write("<table width='780' border='0' cellspacing='5' cellpadding='5' align='center'>");
  document.write("<tr><td width='250'>");
  document.write("<a href=\"/about/\" onMouseOver=\"turnOn('image97')\" onMouseOut=\"turnOff('image97')\"><img src = \"/images/about_off.gif\" name=\"image97\" border=\"0\" width=\"200\" height=\"50\" align=\"bottom\"></a>");
  document.write("</td><td width='250'>");
  document.write("<a href=\"/about/what_we_do.htm\" onMouseOver=\"turnOn('image98')\" onMouseOut=\"turnOff('image98')\"><img src = \"/images/what_we_do_off.gif\" name=\"image98\" border=\"0\" width=\"200\" height=\"50\" align=\"bottom\"></a>");
  document.write("</td><td width='250'>");
  document.write("<a href=\"/news/\" onMouseOver=\"turnOn('image99')\" onMouseOut=\"turnOff('image99')\"><img src = \"/images/fresh_news_off.gif\" name=\"image99\" border=\"0\" width=\"200\" height=\"50\" align=\"bottom\"></a>");
  document.write("</td></tr></table>");
}

function show_date()
{
// ***********************************************
// AUTHOR: WWW.CGISCRIPT.NET, LLC
// URL: http://www.cgiscript.net
// Use the script, just leave this message intact.
// Download your FREE CGI/Perl Scripts today!
// ( http://www.cgiscript.net/scripts.htm )
// ***********************************************

// Get today's current date.
var now = new Date();

// Array list of days.
var days = new Array('Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday');

// Array list of months.
var months = new Array('January','February','March','April','May','June','July','August','September','October','November','December');

// Calculate the number of the current day in the week.
var date = ((now.getDate()<10) ? "0" : "")+ now.getDate();

// Calculate four digit year.
function fourdigits(number)	{
	return (number < 1000) ? number + 1900 : number;
								}

// Join it all together
// today =  days[now.getDay()] + ", " +
//               months[now.getMonth()] + " " +
//                date + ", " +
//                 (fourdigits(now.getYear())) ;
// 
day_of_week = days[now.getDay()]
today =  months[now.getMonth()] + " " +
               date + ", " +
                (fourdigits(now.getYear())) ;

// Print out the data.
document.write("\&nbsp\;\&nbsp\;<font size=2 face='arial, helvetica, trebuchet ms'><b>"+day_of_week+", "+today+"</b></font><br>");
}

