if (document.images) {
    var imgIn = new Object( );
    imgIn["account"] = new Image();
    imgIn["coop"] = new Image();
    imgIn["agbusiness"] = new Image();
    imgIn["creditunion"] = new Image();
    imgIn["municipal"] = new Image();
    imgIn["closely"] = new Image();
    imgIn["about"] = new Image();
    imgIn["links"] = new Image();
    imgIn["newsletter"] = new Image();
    imgIn["FTP"] = new Image();
    imgIn["calculators"] = new Image();
    imgIn["jobs"] = new Image();
    imgIn["tax"] = new Image();     
    imgIn["account"].src = "images/acctbtn_r1.gif";
    imgIn["coop"].src = "images/coopbtn_r1.gif";
    imgIn["agbusiness"].src = "images/aggbusbtn_r1.gif";	
	imgIn["creditunion"].src = "images/creditbtn_r1.gif";
    imgIn["municipal"].src = "images/municpbtn_r1.gif";
    imgIn["closely"].src = "images/closelyheldbtn_r1.gif";
	imgIn["about"].src = "images/aboutusbtn_r1.gif";
    imgIn["links"].src = "images/linksbtn_r1.gif";
	imgIn["newsletter"].src = "images/news_btnr.gif";
    imgIn["FTP"].src = "images/ftp_btn_in.gif";
    imgIn["calculators"].src = "images/calc_btnr.gif";
	imgIn["jobs"].src = "images/job_btn_in.jpg";
	imgIn["tax"].src = "images/taxbtn_in.jpg";
	
    var imgOut = new Object( );
    imgOut["account"] = new Image();
    imgOut["coop"] = new Image();
    imgOut["agbusiness"] = new Image();
    imgOut["creditunion"] = new Image();
    imgOut["municipal"] = new Image();
    imgOut["closely"] = new Image();    
    imgOut["about"] = new Image();
    imgOut["links"] = new Image();
    imgOut["newsletter"] = new Image();
    imgOut["FTP"] = new Image();
    imgOut["calculators"] = new Image(); 
    imgOut["jobs"] = new Image();
    imgOut["tax"] = new Image();    
    imgOut["account"].src = "images/acctbtn1.gif";
    imgOut["coop"].src = "images/coopbtn1.gif";
    imgOut["agbusiness"].src = "images/aggbusbtn1.gif";	
	imgOut["creditunion"].src = "images/creditbtn1.gif";
    imgOut["municipal"].src = "images/municpbtn1.gif";
    imgOut["closely"].src = "images/closelyheldbtn1.gif";
	imgOut["about"].src = "images/aboutusbtn1.gif";
    imgOut["links"].src = "images/linksbtn1.gif";
	imgOut["newsletter"].src = "images/news_btn.gif";
    imgOut["FTP"].src = "images/ftp_btn_out.gif";
    imgOut["calculators"].src = "images/calc_btn.gif";
	imgOut["jobs"].src = "images/job_btn.jpg";
	imgOut["tax"].src = "images/taxbtn_out.jpg";    
       	
function setImage(imgName, type) {
    if (document.images) {
        if (type == "in") {
            document.images[imgName].src = imgIn[imgName].src;
            return true;
        } else if (type == "out") {
            document.images[imgName].src = imgOut[imgName].src;
            return true;
        }
    }
    return false;
}
}