// Rollover 09FEB2005 Version 1.0// Christopher T. Tillman, February 2005// Copyright © 2005 Digital Magic Productions, Inc.// E-mail me at CTTillman@hotmail.com for any technical questions.//// Digital Magic Productions, Inc. grants you a royalty free license to use or// modify this software provided that this copyright notice appears on all copies.// This software is provided "AS IS" without a warranty of any kind.function Roll() {	var i;	for (i = 0; i<Roll.arguments.length; i+=2) {		self.document.images[Roll.arguments[i]].src = eval(Roll.arguments[i] + Roll.arguments[i+1] + ".src");	}}