RotateContent=function(){
	// defines Content array
	var ChangingContent = new Array ()
	ChangingContent[0] = "<a href='http://www.govcomm.harris.com/healthcare/healing-healthcare.asp' class='HomeFeature HomeFeatureActive' ><img src='/home/images/news/trafficant_shadow.jpg' alt='Jim Traficant' /><span>Harris Healthcare Solutions Highlight</span>Jim Traficant describes what two liver transplants taught him about how to heal health care<br /><br /><br /></a>";
	ChangingContent[1] = "<a href='/feature/DC_press/' class='HomeFeature HomeFeatureActive' target='_blank'><img src='/home/images/news/cyber_shadow.jpg' alt='Cyber' /><span>Spotlight on Harris Cyberspace Solutions</span>Dale Meyerrose highlights nation's cyber problems and solutions<br /><br /><br><br></a>";
	ChangingContent[2] = "<a href='http://video.foxbusiness.com/v/4229798/instant-replay-for-the-military-/?playlist_id=87185' target='_blank' class='HomeFeature  HomeFeatureActive' ><img src='/home/images/news/fame_shadow.jpg' class='' alt='FAME' /><span>&ldquo;Instant Replay&rdquo; For the Military</span>John Delay of Harris Corporation talks about how the military is using the same technology used by the NFL and MLB.<br><br></a>";
	var i=0;
	
	var containerId = 'container';
	var container=document.getElementById('container');
	
	// rotates contents every ?? seconds
	rotate=function(){
		setOpacity(container, 0);
		container.style.visibility = 'visible';
		fadeIn(containerId,0);
		i++;
		if(i==ChangingContent.length){i=0}
		container.innerHTML=ChangingContent[i];
		setTimeout('rotate()', 5*2000);
	}
	
	// sets the opacity of the supplied object
	setOpacity=function(obj, opacity) {
		opacity = (opacity == 100)?99.999:opacity;
		
		// IE/Win
		obj.style.filter = "alpha(opacity:"+opacity+")";
		
		// Safari<1.2, Konqueror
		obj.style.KHTMLOpacity = opacity/100;
		
		// Older Mozilla and Firefox
		obj.style.MozOpacity = opacity/100;
		
		// Safari 1.2, newer Firefox and Mozilla, CSS3
		obj.style.opacity = opacity/100;
	}
	
	// uses a Timeout to call itself every ??ms with an object Id and an opacity
	fadeIn=function(objId,opacity) {
		if (document.getElementById) {
		obj = document.getElementById(objId);
		if (opacity <= 100) {
			setOpacity(obj, opacity);
			opacity += 10;
			window.setTimeout("fadeIn('"+objId+"',"+opacity+")", 50);
			}
		}
	}
	
	// execute Rotate Function
	rotate();
}

