/******************************************************************************
* FILE: rollover.js
* CREATED: 08/022/2006
* DEVELOPER: Bryan Walker
* DESCRIPTION:
* This file contains client-side JavaScript that is used to produce rollover
* effects.
******************************************************************************/

/******************************************************************************
* DESCRIPTION:
*  This function creates a rollover effect by changing the source of an IMG tag
*  to a new image. The code was originally generated by Adobe ImageReady.
*
* INPUTS:
*  This function accepts a variable number of arguments. The arguments should be
*  specified in pairs as follows:
*  Argument 1 - The name of the IMG tag to change.
*  Argument 2 - The image that should become the source of the IMG tag specified
*               in Argument 1.
*  Argument 3 - The name of the next IMG tag to change.
*  Argument 4 - The image that should become the source of the IMG tag specified
*               in Argument 4.
*  ...etc.
*
* RETURN VALUE:
*  None.
******************************************************************************/
function changeImages()
{
	if (document.images)
	{
		for (var i=0; i < changeImages.arguments.length; i+=2)
		{
			document[changeImages.arguments[i]].src = changeImages.arguments[i+1];
		}
	}
}// changeImages
