function RotateFooter(){
	imgDiv   = document.getElementById("home-content");
	txtDiv   = document.getElementById("home-corner_feature");
	images   = new Array();
	taglines = new Array();

	images.push("img/home-footer/feature-marching.jpg");
	taglines.push("<p>From the Marching<br/> Hundred to Dance<br/> Marathon, you can&#8217;t<br/> beat IU&#8217;s 650-plus<br/> student<br/> groups.</p>");
	
	images.push("img/home-footer/b-ton_couthouse.jpg");
	taglines.push("<p>From the courthouse square to lively Kirkwood Avenue, Bloomington is the quintessential college town&#8212;there&#8217;s always something to do here.</p>");
	
	images.push("img/home-footer/iu_lamppost.jpg");
	taglines.push("<p>Our limestone buildings and<br/> plentiful green spaces<br/> are guaranteed to<br/> impress you when you<br/> visit our campus.<br/> Even our lampposts<br/> look cool.</p>");
	
	images.push("img/home-footer/joshua_bell.jpg");
	taglines.push("<p>IU produces more than 1,100 musical and stage productions a year, such as concerts by IU alum and faculty member Joshua Bell.</p>");
	
	images.push("img/home-footer/volleyball.jpg");
	taglines.push("<p>IU&#8217;s 24 varsity sports range from basketball to volleyball, and our rec sports program<br/> is one of the<br/> nation&#8217;s<br/> best.</p>");


	// random
	idx = Math.floor(Math.random()*images.length);

	// change image
	if(imgDiv){ imgDiv.style.backgroundImage="url("+images[idx]+")"; }
		
	// change tagline
	if(txtDiv){ txtDiv.innerHTML=taglines[idx]; }
}
