// JavaScript Document

//Image Replacement
function replaceMe(imgId, newImgFile){
	var imgPath = 'images/'+newImgFile;
	var imgObj = document.getElementById(imgId);
	imgObj.src = imgPath;
}
