// JavaScript Document on_out.js rev1.41801
function imageChange( target )
{
	oldImg = target.src;
	target.src = (oldImg.match(/_out\.gif$/)) ? oldImg.replace(/_out\.gif$/, "_on.gif") : oldImg.replace(/_on\.gif$/, "_out.gif");
}

