
<!--
//JavaScript Simple Image Rollover Code
//copyright daxassist, 2000-2004
//visit http://www.daxassist.com for this and other javascripts with full tutorials.




if(document.images) {
pics = new Array();
pics[01] = new Image();
pics[01].src = "images/nav/nav-home-off.gif";
pics[02] = new Image();
pics[02].src = "images/nav/nav-home-on.gif";
pics[03] = new Image();
pics[03].src = "images/nav/nav-about-us-off.gif";
pics[04] = new Image();
pics[04].src = "images/nav/nav-about-us-on.gif";
pics[05] = new Image();
pics[05].src = "images/nav/nav-services-off.gif";
pics[06] = new Image();
pics[06].src = "images/nav/nav-services-on.gif";
pics[07] = new Image();
pics[07].src = "images/nav/nav-resources-off.gif";
pics[08] = new Image();
pics[08].src = "images/nav/nav-resources-on.gif";
pics[09] = new Image();
pics[09].src = "images/nav/nav-testimonials-off.gif";
pics[10] = new Image();
pics[10].src = "images/nav/nav-testimonials-on.gif";
pics[11] = new Image();
pics[11].src = "images/nav/nav-contact-off.gif";
pics[12] = new Image();
pics[12].src = "images/nav/nav-contact-on.gif";
}
function changer(from,to) {
if(document.images) {
document.images[from].src = pics[to].src;
}
}
//-->
