/*
-------------------------------------------------------------------
Scripts for the Home Page
-------------------------------------------------------------------
Authors:
Mark Boyden <mark.boyden@athensgroup.com>
Mark Rackley <mark.rackley@athensgroup.com>

Global Variables:
-------------------------------------------------------------------
*/

var CurrentNavTag = "";
var Quote = new Array();
Quote[0] = "Snakes! Where!  AAAAAHHHHH!";
Quote[1] = "Better than Cats!";
Quote[2] = "I laughed, I cried, I almost drowned!";
Quote[3] = "So, that's what a paddle is for!";
Quote[4] = "They put the 'nut' in nutrition!"; 
Quote[5] = "It sure beats a poke in the eye with a sharp stick!";
Quote[6] = "yee haw!";
Quote[7] = "Do I hear banjos!?";
Quote[8] = "They put the 'hot' in hot dog!!";
Quote[9] = "Whatever you do, don't drink the water!";

/*
-------------------------------------------------------------------
NavImgFocus/NavImgBlur
-------------------------------------------------------------------
Changes the highlighting of the navigation link that is in focus.

Parameters:
inNavTag - The value of the link focused upon

Local Variables: NONE
-------------------------------------------------------------------
*/
function NavImgFocus(inNavTag)
{
document.all[inNavTag].src = "images/nav_on.gif";
}

function NavImgBlur(inNavTag)
{
document.all[inNavTag].src = "images/nav_off.gif";
}

/*
-------------------------------------------------------------------
myRandomQuote
-------------------------------------------------------------------
Changes the quotes in the quote area.

Parameters: NONE

Local Variables: NONE
-------------------------------------------------------------------
*/
function myRandomQuote() {
  var tdy = new Date();
  var seconds = tdy.getSeconds();
  seconds = seconds % 10;
  var myQuote = Quote[seconds];
  document.write(myQuote);
}

