// JavaScript Document

defaultint=1000;

function rotate(name){
	arrayname = eval(name+'Images');
	Listingcount = arrayname.length;
	img = eval('document.'+name)
	if (document.images){
		eval('this'+name+'++');
		if (eval('this'+name) == Listingcount){
			eval('this'+name+'=0');
		}
		img.src=eval(name+'Images[this'+name+']');
		setTimeout(eval("\"rotate('"+name+"')\""),defaultint);
	}
}
