Rollimage = new Array()

Rollimage[0] = new Image(38,25)
Rollimage[0].src = "/pics/kredit_home_icon_black.gif"

Rollimage[1] = new Image(38,25)
Rollimage[1].src = "/pics/kredit_home_icon_white.gif"

function SwapOut(){
  document.homeIcon.src = Rollimage[1].src;
  return true;
}

function SwapBack(){
  document.homeIcon.src = Rollimage[0].src; 
  return true;
}