			<!--
			thisHTML		= 0
			intHTMLCount	= arrHTML.length
			intDirection	= 1						//1=fade-in	-1=fade-out
			intOpacity		= 100					//Initial Value
			intStep			= 2						//Amount to incr/decr Opacity
			setTimeout("initiate()", 500)

			function initiate() {
				setTimeout("rotate()", 500)			// 1000 = 1 second
			}

			function rotate() {
				var objDiv=document.getElementById('adBillboard');
				intOpacity = objDiv.filters.alpha.opacity + (intDirection*intStep);
				//Set a short interval for each step in fade
				intInterval		= 20;				//Milliseconds to take each Step

				if (intOpacity>99) {
					intOpacity = 100;
					//Set Direction=-1, increment Opacity
					intDirection = -1;
					//Set a pausing interval
					intInterval		= 2000;			//Milliseconds to show image in full color
				}
				if (intOpacity<0) {
					intOpacity = 0;
					//Switch to new image, set Direction=1, increment Opacity
					thisHTML++;
					if (thisHTML == intHTMLCount) {
						thisHTML = 0;
					}
					intDirection = 1;
					//Set a pausing interval
					intInterval		= 50;			//Milliseconds to show imaged fully faded
					//Change contents displayed
					objDiv.innerHTML = arrHTML[thisHTML];
				}
				
				objDiv.filters.alpha.opacity=intOpacity;
				setTimeout("rotate()", intInterval);
			}

			//-->

