/*Current date script credit: 
This script customized by Scott Allard
12-19-08
*/
IMG01 = "../img_2/mouse_over.gif"
IMG02 = "../img_2/mouse_norm.gif"

function imgover(imgname){
     imgname.src = IMG01
}
function imgout(imgname){
     imgname.src = IMG02
}
