// JavaScript Document
function rollover(imgId, imagereplace){
	var path = "images/";
	document.getElementById(imgId).src = path+imagereplace;
	}
