<!--

/*
Arrow onMouseover
By Clarence Eldefors (http://www.freebox.com/cereweb)
Visit http://javascriptkit.com for this and over 400+ other scripts
*/

IMAGE01 = "../images/on2.gif"  
IMAGE02 = "../images/off.gif"

function imgover(imgname){
     imgname.src = IMAGE01
}

function imgout(imgname){
     imgname.src = IMAGE02
}
//-->
