function imageOver(target) {
	target.src = target.src.replace("_off.","_over.");
}

function imageOut(target) {
	target.src = target.src.replace("_over.","_off.");
}

function roll(img_name, img_src)
   {
   document[img_name].src = img_src;
   }

