<!--
// JavaScript Document
//Hiding script from old browsers
// Netscape 3.0 compatibility test (for javascript image swapping)
compat = false;
if( parseInt( navigator.appVersion ) >= 3 ) { compat = true; }
// cache images for quick swapping
if( compat )
{
homeoff = new Image;
homeoff.src = "images/home2.gif";
homeon = new Image;
homeon.src = "images/home1.gif";
scheduleoff = new Image;
scheduleoff.src = "images/schedule2.gif";
scheduleon = new Image;
scheduleon.src = "images/schedule1.gif";
rulesoff = new Image;
rulesoff.src = "images/rules2.gif";
ruleson = new Image;
ruleson.src = "images/rules1.gif";
raceresultsoff = new Image;
raceresultsoff.src = "images/raceresults2.gif";
raceresultson = new Image;
raceresultson.src = "images/raceresults1.gif";
mudracinginfooff = new Image;
mudracinginfooff.src = "images/info2.gif";
mudracinginfoon = new Image;
mudracinginfoon.src = "images/info1.gif";
applicationoff = new Image;
applicationoff.src = "images/application2.gif";
applicationon = new Image;
applicationon.src = "images/application1.gif";
}

// swap images using the cached images

function glow(x, y)
{
   if( compat ) { document.images[x].src=eval(y+'.src'); }
}
//-->
	