/*
Arrow onMouseover Clarence Eldefors (http://www.freebox.com/cereweb)
*/

IMAGE01 = "images/on.gif"  
IMAGE02 = "images/off.gif"

function imgover(imgname){
     imgname.src = IMAGE01
}

function imgout(imgname){
     imgname.src = IMAGE02
}

