// 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;(35,81)
home_on.src = "images/home_on.gif";
home_off = new Image;(35,81)
home_off.src = "images/home_off.gif";

about_on = new Image;(35,82)
about_on.src = "images/about_on.gif";
about_off = new Image;(35,82)
about_off.src = "images/about_off.gif";

meet_on = new Image;(35,116)
meet_on.src = "images/meet_on.gif";
meet_off = new Image;(35,116)
meet_off.src = "images/meet_off.gif";

resources_on = new Image;(35,91)
resources_on.src = "images/resources_on.gif";
resources_off = new Image;(35,91)
resources_off.src = "images/resources_off.gif";

schools_on = new Image;(35,81)
schools_on.src = "images/schools_on.gif";
schools_off = new Image;(35,81)
schools_off.src = "images/schools_off.gif";

contact_on = new Image;(35,93)
contact_on.src = "images/contact_on.gif";
contact_off = new Image;(35,93)
contact_off.src = "images/contact_off.gif";

support_on = new Image;(35,154)
support_on.src = "images/support_on.gif";
support_off = new Image;(35,154)
support_off.src = "images/support_off.gif";

	}
}
// swap images using the cached images
function glow(x, y)
{
 if (document.images) 
 {
   document.images[x].src=eval(y+'.src');
 }
}
