
			var intCurrentItem = 1;
			var intLastItem = 1;
			var intItemCount = 9;

			function ShowNext(strPrefix,intDelay) {
				if (intCurrentItem < intItemCount ) {
					intCurrentItem ++;
				} else {
					intCurrentItem =1;
				}

				if (document.getElementById) {
					if (container.filters) {
						container.filters[0].Apply();
					}
					document.getElementById(strPrefix + intLastItem).style.display = 'none';
					document.getElementById(strPrefix + intCurrentItem ).style.display = 'block';

					if (container.filters) {
						container.filters[0].Play(duration=2);
					}
				} else if (document.all) {
					document.all[strPrefix + intLastItem].style.display = 'none';
					document.all[strPrefix + intCurrentItem ].style.display = 'block';
				} else if (document.layers) {
					window.status = 'This site does not support ancient netscape browsers. Please update to a modern web-browsing utility';
				}				
				intLastItem = intCurrentItem;

				setTimeout("ShowNext('" + strPrefix + "'," + intDelay + ")",intDelay);
			}
			function StartLoop() {
				setTimeout('ShowNext("pageitem",5500)',5500);
			}
			StartLoop();

