function preload_images()
{

  image1on = new Image();
  image1on.src = "/images/nav_on-01-01.jpg";

  image2on = new Image();
  image2on.src = "/images/nav_on-02-01.jpg";

  image3on = new Image();
  image3on.src = "/images/nav_on-03-01.jpg";

  image4on = new Image();
  image4on.src = "/images/nav_on-04-01.jpg";

  image5on = new Image();
  image5on.src = "/images/nav_on-05-01.jpg";

  image6on = new Image();
  image6on.src = "/images/nav_on-06-01.jpg";

  image7on = new Image();
  image7on.src = "/images/nav_on-07-01.jpg";

  image8on = new Image();
  image8on.src = "/images/nav_on-08-01.jpg";

  image1off = new Image();
  image1off.src = "/images/nav_off-01-01.jpg";

  image2off = new Image();
  image2off.src = "/images/nav_off-02-01.jpg";

  image3off = new Image();
  image3off.src = "/images/nav_off-03-01.jpg";

  image4off = new Image();
  image4off.src = "/images/nav_off-04-01.jpg";

  image5off = new Image();
  image5off.src = "/images/nav_off-05-01.jpg";

  image6off = new Image();
  image6off.src = "/images/nav_off-06-01.jpg";

  image7off = new Image();
  image7off.src = "/images/nav_off-07-01.jpg";

  image8off = new Image();
  image8off.src = "/images/nav_off-08-01.jpg";

}

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 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("<center><font size=2 face=arial><b>"+day_of_week+"</b><br>"+today+"</font></center><hr>");
}

function show_date2()
{
// ***********************************************
// 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("<font color=#9B6900 face='Arial, Helvetica, sans-serif' size=2>"+day_of_week+",&nbsp;"+today+"</font>");
}

function vertical_menu()
{
  document.write("<table width=\"217\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">");
  document.write("<tr><td><a href=\"/\" onMouseOver=\"turnOn('image1')\" onMouseOut=\"turnOff('image1')\"><img src = \"/images/nav_off-01-01.jpg\" name=\"image1\" border=\"0\" width=\"217\" height=\"31\" align=\"bottom\"></a></td></tr>");
  document.write("<tr><td><a href=\"/about/\" onMouseOver=\"turnOn('image2')\" onMouseOut=\"turnOff('image2')\"><img src = \"/images/nav_off-02-01.jpg\" name=\"image2\" border=\"0\" width=\"217\" height=\"31\" align=\"bottom\"></a></td></tr>");
  document.write("<tr><td><a href=\"/news/\" onMouseOver=\"turnOn('image3')\" onMouseOut=\"turnOff('image3')\"><img src = \"/images/nav_off-03-01.jpg\" name=\"image3\" border=\"0\" width=\"217\" height=\"31\" align=\"bottom\"></a></td></tr>");
  document.write("<tr><td><a href=\"/scholarship/\" onMouseOver=\"turnOn('image4')\" onMouseOut=\"turnOff('image4')\"><img src = \"/images/nav_off-04-01.jpg\" name=\"image4\" border=\"0\" width=\"217\" height=\"31\" align=\"bottom\"></a></td></tr>");
  document.write("<tr><td><a href=\"/newsletter/\" onMouseOver=\"turnOn('image5')\" onMouseOut=\"turnOff('image5')\"><img src = \"/images/nav_off-05-01.jpg\" name=\"image5\" border=\"0\" width=\"217\" height=\"31\" align=\"bottom\"></a></td></tr>");
  document.write("<tr><td><a href=\"/about/contact_us.htm\" onMouseOver=\"turnOn('image6')\" onMouseOut=\"turnOff('image6')\"><img src = \"/images/nav_off-06-01.jpg\" name=\"image6\" border=\"0\" width=\"217\" height=\"31\" align=\"bottom\"></a></td></tr>");
  document.write("</table>");
  document.write("<br><br>&nbsp;&nbsp;&nbsp;&nbsp;");
  document.write("<img src='/images/orange_and_trees.jpg' border='0' alt='[Orange and Trees]'>");
}

function footer()
{
  document.write("  <tr>");
  document.write("    <td height='90' background='/images/down.jpg'>");
  document.write("	 <table width='100%' border='0' cellspacing='0' cellpadding='0' align='right'>");
  document.write("        <tr>");
  document.write("	    <td width='25%'>");
  document.write("		&nbsp;");
  document.write("	    </td>");
  document.write("          <td align='center' style='line-height: 1.5;'>");
  document.write("		  <font color='#8F5F00' size='2' face='arial, helvetica, sans-serif'> ");
  document.write("		  <a href='/' class='text_9pt'>Home</a> :: ");
  document.write("		  <a href='/about/' class='text_9pt'>Board and Committee</a> :: ");
  document.write("		  <a href='/news/' class='text_9pt'>News and Events</a> :: ");
  document.write("		  <a href='/scholarship/' class='text_9pt'>Scholarship</a> :: ");
  document.write("		  <a href='/newsletter/' class='text_9pt'>Newsletter</a> :: ");
  document.write("		  <a href='/about/contact_us.htm' class='text_9pt'>Contact Us</a>");
  document.write("		  <br>");
  document.write("		  <a href='#top' class='text_9pt'>Top of Page</a>");
  document.write("		</font>");
  document.write("	    </td>");
  document.write("        </tr>");
  document.write("      </table>  <!-- end 75% table -->");
  document.write("    </td>");
  document.write("  </tr>");
}



