// Seeing if the scripting lanuage supports "document.images" is a more reliable
// method than checking version numbers.
if (document.images) {
// cache images for quick swapping
{

home_on = new Image;(57,93)
home_on.src = "images/home_on.gif";
home_off = new Image;(57,93)
home_off.src = "images/home_off.gif";

about_us_on = new Image;(78,93)
about_us_on.src = "images/about_us_on.gif";
about_us_off = new Image;(78,93)
about_us_off.src = "images/about_us_off.gif";

info_on = new Image;(49,93)
info_on.src = "images/info_on.gif";
info_off = new Image;(49,93)
info_off.src = "images/info_off.gif";

team_on = new Image;(53,93)
team_on.src = "images/team_on.gif";
team_off = new Image;(53,93)
team_off.src = "images/team_off.gif";

photos_on = new Image;(65,93)
photos_on.src = "images/photos_on.gif";
photos_off = new Image;(65,93)
photos_off.src = "images/photos_off.gif";

contact_on = new Image;(65,93)
contact_on.src = "images/contact_on.gif";
contact_off = new Image;(65,93)
contact_off.src = "images/contact_off.gif";
	}
}
// swap images using the cached images
function glow(x, y)
{
 if (document.images) 
 {
   document.images[x].src=eval(y+'.src');
 }
}
