/* This javascript and accompanying text copyright @URL Internet Consultants. 
   2002 All Rights Reserved.
   Author: Derek Tearne 
   */
/* Rotating Pool of Images */



image_counter = 0;


var been_through = 0;
var href_loaded = 0;
var link_target = 0;
function animate_images(){
if (document.images.rotate_this){

		if (document.all) {
			document.images.rotate_this.style.filter="blendTrans(duration=2)";
			document.images.rotate_this.style.filter="blendTrans(duration=crossFadeDuration)";
			document.images.rotate_this.filters.blendTrans.Apply();
		}

	if (document.images){
			document.rotate_this.src = image_pool[image_counter].src;

			if (document.all) {
				document.images.rotate_this.filters.blendTrans.Play();
			}

			image_counter++;
			if (image_counter == image_pool.length){
				image_counter = 0;
			}
			timerONE=window.setTimeout('animate_images()',4000);
		}
	}
}
