<!--
	/*
		changeImages.js include file.
		Written			: 20011107 by James Austin.
		Last Updated	: 20011114
		Current Version	: 2.0
		
		Purpose:
		This function is used to change the source property of image objects.

		Dependants:
		None.
	*/

	function changeImages(objImg,objChangeImgSrc) {
		/*
			PARAMETERS:
			oImg			= image object, do not pass in quotes.
			oChangeImgSrc	= the source of the image to change, do not pass in quotes.
		*/

		if (document.images && typeof objImg == 'object' && objImg != null && typeof objChangeImgSrc == 'object' && objChangeImgSrc != null) {
			objImg.src = objChangeImgSrc.src;
		}
	}
//-->