RotateContent=function(){
	// defines Content array
	var ChangingContent = new Array ()
	ChangingContent[0] = "<a href='/feature/capitol_hill_2009_07' class='HomeFeature HomeFeatureActive' ><img src='/home/images/news/trafficant_shadow.jpg' alt='Jim Traficant' /><span>Harris Healthcare Solutions Highlight</span>Healthcare IT subject matter expert Jim Traficant on healthcare transformation<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://www.harris.com/view_pressrelease.asp?act=lookup&pr_id=2761' class='HomeFeature  HomeFeatureActive' ><img src='/home/images/news/fame_shadow.jpg' class='reflect rheight10 ropacity30' alt='FAME' /><span>Harris Full Motion Video Feature</span>Company's technology helps U.S. government deal with explosion of new video from UAVs and other devices<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();
}
