
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/worksitephotos/hvacunits1.jpg";
img2off= new Image;
img2off.src="/images/worksitephotos/hvacunits2.jpg";
img3off= new Image;
img3off.src="/images/worksitephotos/hvacunits5.jpg";
img4off= new Image;
img4off.src="/images/worksitephotos/hvacunits6.jpg";
img5off= new Image;
img5off.src="/images/worksitephotos/hvacunits7.jpg";


img1on= new Image;
img1on.src="/images/worksitephotos/hvacunits1_sm.jpg";
img2on= new Image;
img2on.src="/images/worksitephotos/hvacunits2_sm.jpg";
img3on= new Image;
img3on.src="/images/worksitephotos/hvacunits5_sm.jpg";
img4on= new Image;
img4on.src="/images/worksitephotos/hvacunits6_sm.jpg";
img5on= new Image;
img5on.src="/images/worksitephotos/hvacunits7_sm.jpg";


}

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");

}
}

