﻿//This function is used for the logo rollover effects on the Clients page
function changeImage(imageName,newImageSource) {
	if (document.images) {
		document.images[imageName].src = newImageSource;
	}
}