var announcements = new Array();

//to add new elements, put desired in HTML in ' deliminted string (be sure to escape any ' inside)
// and add to announcements array with a push:
//
// announcements.push('new HTML goes here');
//
// *** NOTE: the main image should NOT be wider than 288px or the left nav will overlap the image


announcements.push('<p><img src="images/psi51webimg.gif" width="257" height="201" alt="A delocalized level near the isomerization barrier energy, exhibiting large probability amplitude at the transition state geometry"></p><p align="left"><em>A delocalized level near the isomerization barrier energy, exhibiting large probability amplitude at the transition state geometry</em></p><p align="left"><a href="http://rwf.mit.edu/group">The Field Lab</a><br />The S1 state of acetylene presents the possibility of low-barrier isomerization from its <em>trans</em> geometry minimum to a local energy minimum at a <em>cis</em> geometry.  This process has been the focus of many theoretical studies, but it has been difficult to study experimentally because, though the <em>trans</em> minimum has been exhaustively characterized, the transition from the ground electronic state to the <em>cis</em> geometry is electronically forbidden and no transitions to this geometry have previously been observed.  In the course of characterizing the S1 surface, several levels were observed which could not be ascribed to S1 <em>trans</em> or other electronic states.  S1 <em>cis</em> seems a likely candidate for explaining these &quot;interloper&quot; levels, which were, surprisingly, observed below the calculated barrier to <em>trans–cis</em> isomerization, and must therefore owe their intensity to mixing via tunneling with <em>trans</em> geometry localized states.</p><p>Continued&#133; <a href="http://web.mit.edu/chemistry/www/news/inthenews.html">Click Here</a></p>');
announcements.push('<p align="left">Annelise Beck &#39;09 has been awarded a <a href="http://www.act.org/goldwater/yyschrel.html">2008 Barry M. Goldwater Scholarship</a>. Congress established the Barry M. Goldwater Scholarship and Excellence in Education Program in 1986 to honor Senator Barry M. Goldwater, who served his country for 56 years as a soldier and statesman, including 30 years of service in the U.S. Senate. The purpose of the Goldwater Foundation is to provide a continuing source of highly qualified scientists, mathematicians, and engineers by awarding scholarships to outstanding undergraduate college students who intend to pursue careers in these fields.</p><img src="images/abeck.jpg" width="150" height="188" alt="Annelise Beck">');


function selAnn(start) {
	var limit = announcements.length;	
	if (start == null) {
 		start = Math.floor(Math.random() * limit);
	}

	// get announcement div object
	var divObj = document.getElementById('announcement');

	// make sure index isn't greater than size of the array
	var index = start % limit;

	// populate announcement div with content
	divObj.innerHTML = announcements[index];

	// increment announcement array index
	index++;

	// call function again with value of index and a time-delay
	setTimeout("selAnn(" + eval(index).toString() + ")", 20000);
}




