/* 	
	banner rotator script
	if you add features, don't forget to increase the var nRandNumber
*/

function GetChunk() {

	var sString;
	var bException="False";
	var bException1="False";
	var nRandNumber = Math.floor(Math.random()*5);

		
	var Segment1 = new Array (
		'/images/SeptGolfbanneweb.jpg',
		'/images/banners/Sept21stBanner46860.gif'
		);

		var SegmentHref1 = new Array(
			"<img src='images/spotlightlcd.jpg' alt='Lecture Center D, Room 1 and 2'><div id='spotlightcaption'>Lecture Center D includes progressive, state-of-the-art A/V multimedia podiums, new seating, adjustable lighting, and sheer drapes to maximize natural light.  The design reflected an emphasis on respecting and highlighting the existing architecture of the building.</div>",
			"<img src='images/spotlightbsb113_v2.jpg' alt='Behavioral Sciences Building Room 113'><div id='spotlightcaption'>In response to student feedback, first floor rooms in the Behavioral Sciences Building were renovated with an emphasis on acoustical improvements and vibrant paint colors. Pictured left is one of many plug-and-play classrooms on campus that allow for increased usability and efficiency.</div>",
			"<img src='images/spotlightlca.jpg' alt='Lecture Center A, Lobby'><div id='spotlightcaption'>Lecture Center A Oasis draws students in-between classes for informal gatherings and studying.  A highlight of the space is a series of six vibrant paintings created by artist and alumnus Brian Dortmund.</div>",
			"<img src='images/spotlightlincoln.jpg' alt='Lincoln Hall Oasis Rendering'><div id='spotlightcaption'>Lincoln Hall is currently undergoing renovation with a strong focus on energy efficient construction standards. The building will showcase three floors of informal learning space and state-of-the-art classrooms.</div>",
			"<img src='images/spotlightmural.jpg' alt='Jansheski Mural Detail in Lecture Center C Rotunda'><div id='spotlightcaption'>A detail of David Jansheski's mural ‘The Sky is Deeper than the Ocean.’ The mural can be found in the new Lecture Center C Oasis, gifted by Eileen and Michael Tanner.</div>"
			);

	var sString= SegmentHref1[nRandNumber];	
	
	document.write (sString);
}

