// ROLLOVERS

if (document.images) {

img0on = new Image();
img0on.src = "images-nav/home2_on.gif";

img0off = new Image();
img0off.src = "images-nav/home2_off.gif";

img1on = new Image();
img1on.src = "images-nav/principals2_on.gif";

img1off = new Image();
img1off.src = "images-nav/principals2_off.gif";

img2on = new Image();
img2on.src = "images-nav/companies2_on.gif";

img2off = new Image();
img2off.src = "images-nav/companies2_off.gif";

img3on = new Image();
img3on.src = "images-nav/news_on.gif";

img3off = new Image();
img3off.src = "images-nav/news_off.gif";

img4on = new Image();
img4on.src = "images-nav/directions2_on.gif";

img4off = new Image();
img4off.src = "images-nav/directions2_off.gif";

img5on = new Image();
img5on.src = "images-nav/contact2_on.gif";

img5off = new Image();
img5off.src = "images-nav/contact2_off.gif";


img10on = new Image();
img10on.src = "images-pics/ras_sm_on.jpg";

img10off = new Image();
img10off.src = "images-pics/ras_sm.jpg";

img11on = new Image();
img11on.src = "images-pics/dan_sm_on.jpg";

img11off = new Image();
img11off.src = "images-pics/dan_sm.jpg";

img12on = new Image();
img12on.src = "images-pics/gretchen_sm_on.jpg";

img12off = new Image();
img12off.src = "images-pics/gretchen_sm.jpg";

img13on = new Image();
img13on.src = "images-pics/angela_sm_on.jpg";

img13off = new Image();
img13off.src = "images-pics/angela_sm.jpg";

img55on = new Image();
img55on.src = "images-nav/news2_on.gif";

img55off = new Image();
img55off.src = "images-nav/news2_off.gif";


}


function imgOn (imgName) {
if (document.images) {
document[imgName].src = eval(imgName + "on.src");
}
}

function imgOff (imgName) {
if (document.images) {
document[imgName].src = eval(imgName + "off.src");
}
}

