function mouseover(img) {
	img.img = img.src;
	img.src = img.src.replace(".gif", "_on.gif");
}

function mouseout(img) {
	img.src = img.img;
}
