// ImageChanger.js by Matt Fritz
// June 23, 2007
// Functions to change an image given an object in the document and a string filepath

// change the image given an object and an image path
function changeImage(objID, filePath)
{
	var imageObj = document.getElementById(objID);

	imageObj.src = filePath;
}