
<!-- **************  Start of the commonFunctions ************** -->


		//  This function is used by the main index pages to provide image changes 
		//  on mouse overs.
		
		function changeImages() 
		 {
		  	if (document.images) 
		  	 {
		    		for (var i=0; i<changeImages.arguments.length; i+=2) 
		    		 {
		      			document[changeImages.arguments[i]].src = eval(changeImages.arguments[i+1] + ".src");
		    		 }
		  	 }
		 }
		
		

