<!--//

normal_home = new Image();
normal_home.src = "images/home.gif";

mouseover_home = new Image();
mouseover_home.src = "images/home1.gif";

//------------------------------

normal_about = new Image();
normal_about.src = "images/about.gif";

mouseover_about = new Image();
mouseover_about.src = "images/about1.gif";

//------------------------------

normal_directions = new Image();
normal_directions.src = "images/directions.gif";

mouseover_directions = new Image();
mouseover_directions.src = "images/directions1.gif";

//------------------------------

normal_games = new Image();
normal_games.src = "images/games.gif";

mouseover_games = new Image();
mouseover_games.src = "images/games1.gif";

//<!-- repeat the 4 lines above for any subsequent images. -->

function swap()
{
if (document.images)
{
for (var x=0;
x<swap.arguments.length;
x+=2) 
{
document[swap.arguments[x]].src = eval(swap.arguments[x+1] + ".src");
}
}
}

//------------------------------

if (thisPage=="home")
{
document.write ("<img name='Home' alt='Home' src=\"images/home1.gif\">");
}
else
{
document.write ("<a href=\"index.html\" onMouseOver=\"swap('home','mouseover_home')\" onMouseOut=\"swap('home','normal_home')\"><img alt='Home' src=\"images/home.gif\" style='border:0px;' name='home'></a>"); 
}
//------------------------------

 document.write ("<br />"); 
 
//------------------------------
if (thisPage=="about")
{
document.write ("<img name='About Us' alt='About Us' src=\"images/about1.gif\">");
}
else
{
document.write ("<a href=\"about.html\" onMouseOver=\"swap('about','mouseover_about')\" onMouseOut=\"swap('about','normal_about')\"><img alt='About Us' src=\"images/about.gif\" style='border:0px;' name='about'></a>"); 
}
//------------------------------

 document.write ("<br />");

//------------------------------
if (thisPage=="directions")
{
document.write ("<img name='Directions' alt='Directions' src=\"images/directions1.gif\">");
}
else
{
document.write ("<a href=\"directions.html\" onMouseOver=\"swap('directions','mouseover_directions')\" onMouseOut=\"swap('directions','normal_directions')\"><img alt='Directions' src=\"images/directions.gif\" style='border:0px;' name='directions'></a>"); 
}
//------------------------------

 document.write ("<br />");

//------------------------------
if (thisPage=="games")
{
document.write ("<img name='Games List' alt='Games List' src=\"images/games1.gif\">");
}
else
{
document.write ("<a href=\"games_list.html\" onMouseOver=\"swap('games','mouseover_games')\" onMouseOut=\"swap('games','normal_games')\"><img alt='Games List' src=\"images/games.gif\" style='border:0px;' name='games'></a>"); 
}

//-->