
var uagent,uappVersion,uappName
uappName=navigator.appName
uappVersion=navigator.appVersion
uagent=navigator.userAgent

if ((uagent.substring(25,29) == "MSIE" && uagent.charAt(30) > 3) || (uappName == "Netscape" && uappVersion.substring(0,3) > 3))

{

img1off= new Image;
img1off.src="images/nav/nav_home.gif";
img2off= new Image;
img2off.src="images/nav/nav_aboutus.gif";
img3off= new Image;
img3off.src="images/nav/nav_ourfacility.gif";
img4off= new Image;
img4off.src="images/nav/nav_calendar.gif";
img5off= new Image;
img5off.src="images/nav/nav_parentcorner.gif";
img6off= new Image;
img6off.src="images/nav/nav_faqs.gif";
img7off= new Image;
img7off.src="images/nav/nav_contactus.gif";


img1on= new Image;
img1on.src="images/nav/nav_home2.gif";
img2on= new Image;
img2on.src="images/nav/nav_aboutus2.gif";
img3on= new Image;
img3on.src="images/nav/nav_ourfacility2.gif";
img4on= new Image;
img4on.src="images/nav/nav_calendar2.gif";
img5on= new Image;
img5on.src="images/nav/nav_parentcorner2.gif";
img6on= new Image;
img6on.src="images/nav/nav_faqs2.gif";
img7on= new Image;
img7on.src="images/nav/nav_contactus2.gif";


imgbox1off= new Image;
imgbox1off.src="images/adbox1.jpg";
imgbox2off= new Image;
imgbox2off.src="images/adbox2.gif";
imgbox3off= new Image;
imgbox3off.src="images/adbox3.gif";

imgbox1on= new Image;
imgbox1on.src="images/adbox1b.jpg";
imgbox2on= new Image;
imgbox2on.src="images/adbox2b.gif";
imgbox3on= new Image;
imgbox3on.src="images/adbox3b.gif";


}

function active(imgName){

if ((uagent.substring(25,29) == "MSIE" && uagent.charAt(30) > 3) || (uappName == "Netscape" && uappVersion.substring(0,3) > 3)){

document[imgName].src = eval(imgName + "on.src");

}
}

function inActive(imgName){

if ((uagent.substring(25,29) == "MSIE" && uagent.charAt(30) > 3) || (uappName == "Netscape" && uappVersion.substring(0,3) > 3)){

document[imgName].src = eval(imgName + "off.src");

}
}

