// DynaButtons

home_off = new Image()
home_off.src = "/images-sf/home_off.gif";
home_on = new Image()
home_on.src = "/images-sf/home_on.gif";

thefund_off = new Image()
thefund_off.src = "/images-sf/thefund_off.gif";
thefund_on = new Image()
thefund_on.src = "/images-sf/thefund_on.gif";

wnew_off = new Image()
wnew_off.src = "/images-sf/wnew_off.gif";
wnew_on = new Image()
wnew_on.src = "/images-sf/wnew_on.gif";

myacct_off = new Image()
myacct_off.src = "/images-sf/myacct_off.gif";
myacct_on = new Image()
myacct_on.src = "/images-sf/myacct_on.gif";

claims_off = new Image()
claims_off.src = "/images-sf/claims_off.gif";
claims_on = new Image()
claims_on.src = "/images-sf/claims_on.gif";

payforperf_off = new Image()
payforperf_off.src = "/images-sf/payforperf_off.gif";
payforperf_on = new Image()
payforperf_on.src = "/images-sf/payforperf_on.gif";

tiip_off = new Image()
tiip_off.src = "/images-sf/tiip_off.gif";
tiip_on = new Image()
tiip_on.src = "/images-sf/tiip_on.gif";

oiltanks_off = new Image()
oiltanks_off.src = "/images-sf/oiltanks_off.gif";
oiltanks_on = new Image()
oiltanks_on.src = "/images-sf/oiltanks_on.gif";

loan_off = new Image()
loan_off.src = "/images-sf/loan_off.gif";
loan_on = new Image()
loan_on.src = "/images-sf/loan_on.gif";

fees_off = new Image()
fees_off.src = "/images-sf/fees_off.gif";
fees_on = new Image()
fees_on.src = "/images-sf/fees_on.gif";

pstats_off = new Image()
pstats_off.src = "/images-sf/pstats_off.gif";
pstats_on = new Image()
pstats_on.src = "/images-sf/pstats_on.gif";

relinks_off = new Image()
relinks_off.src = "/images-sf/relinks_off.gif";
relinks_on = new Image()
relinks_on.src = "/images-sf/relinks_on.gif";

function unhighlight(img) {
  document [img].src = eval(img + "_off.src");
}

function highlight(img) {
  document [img].src = eval(img + "_on.src");
}

