<!--

if (document.images) {            // Active Images
            homeon = new Image();      
            homeon.src = "images/button_down_home.gif";

            abouton = new Image();      
            abouton.src = "images/button_down_about.gif";
			
            serviceson = new Image();      
            serviceson.src = "images/button_down_services.gif";

            contacton = new Image();      
            contacton.src = "images/button_down_contact.gif";
			
			formson = new Image();      
            formson.src = "images/button_down_forms.gif";

            homeoff = new Image();      
            homeoff.src = "images/button_home.gif";

            aboutoff = new Image();      
            aboutoff.src = "images/button_about.gif";
			
            servicesoff = new Image();      
            servicesoff.src = "images/button_services.gif";

            contactoff = new Image();      
            contactoff.src = "images/button_contact.gif";
			
			formsoff = new Image();      
            formsoff.src = "images/button_forms.gif";
}

// Function to 'activate' images.
function imgOn(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "on.src");
        }
}

// Function to 'deactivate' images.
function imgOff(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "off.src");
        }
}

// Netscape resize bug.
function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);

// -->
