<!--Begin Hiding from old browsers//

if (document.images) {   
img1on = new Image();           
img1on.src = "images/library/risaahomebtnon.gif";  

img1off = new Image();          
img1off.src = "images/library/risaahomebtnoff.gif";

img2on = new Image();           // Active images
img2on.src = "images/library/nextpagebtnon.gif";  

img2off = new Image();          // Inactive images
img2off.src = "images/library/nextpagebtnoff.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");
        }
}

//Deactivate Hiding -->
