// JavaScript Document

	var myHtml = new Array(11);
	myHtml[0] = "Dr. Dilip Kondepudi recently gave a talk at Princeton University's Plasma Physics Laboratory's Science on Saturday  event. You can view Dr. Kondepudi's talk at:</p><p align='center'><a href='rtsp://webmedia.pppl.gov/Science_On_Saturday_2009/SOS07FEB09_DKondepudi.ra'>Click Here</a>";
	myHtml[1] = "<font size='2' face='Verdana, Arial, Helvetica, sans-serif'><a href='http://www.wfu.edu/news/release/2009.02.11.c.php'>WFU researchers develop new <br>platinum-based anti-tumor compound</a></font><br><br><a href='http://www.oldgoldandblack.com/article/anti-tumor_compound_discovered/'><strong><font size='2' face='Verdana, Arial, Helvetica, sans-serif'>Old Gold and Black Article</font></strong></a>";
	myHtml[2] = "<a rel='nofollow' target='_blank' href='http://www.wfu.edu/wowf/2009/20090223.qa.alexander.html'>Beyond Marie Curie: Encouraging Women in Science</a></strong><br><font size='2' face='Verdana, Arial, Helvetica, sans-serif'>Associate  Professor of Chemistry Rebecca Alexander is encouraging the next  generation of female scientists in her classroom and in the laboratory  by showing that well-behaved women can make scientific history.</font>";
	myHtml[3] = "<b>C& E News</b><br><a target='_blank' href='http://pubs.acs.org/cen/email/html/cen_education_87_8710education.html'>The Lecturing Life - By shouldering a sizable teaching load, lecturers have become an indispensable part of chemistry departments</a>";
	myHtml[4] = "Congratulations to rising senior chemistry major <em>Melissa Donaldson</em>, who was named a 2009 Barry S. Goldwater Scholar.";
	myHtml[5] = "The Central North Carolina section of the ACS is hosting its next event on Apr. 14 beginning at 6:30 at Stonefield Cellars Winery (Stokesdale, NC). Dr. Robert Wurz will give a seminar entitled \"Winemaking: Art & Enology,\" and a wine tasting will follow the seminar and CNC-ACS meeting. All are welcome to attend.";
	myHtml[6] = "WFU will host the <a href=\'http://www.peanc.org/earth-day-fair\'>4th Annual Piedmont Earth Day Fair</a> on Sat., Apr. 18 from 10 AM to 5 PM on the Magnolia Quad. Festivities will include panel discussions, demonstrations, a stationary green car parade, a green jobs booth, specially designed children's activities, entertainment all day long on the main stage, an all-natural food court and more.";
	myHtml[7] = "Congratulations to <a href=\'http://www.wfu.edu/chemistry/faculty/AkbarSalam.html\'>Akbar Salam</a> on the recent approval of his application for tenure with promotion to Associate Professor. We are fortunate to have him with us in the department and we hope that he remains a vital part of our teaching and research venture for many years to come!";
	myHtml[8] = "WFU professor, Dr. Rebecca Alexander, brings her students and middle school students together for some \"hands on\" learning.  <a href=\'http://www2.journalnow.com/content/2009/apr/15/wfu-professor-brings-her-students-middle-schoolers/\'>Read More</a>";
	myHtml[9] = "On April 29, Wake Forest Graduate student, Veronica Casina, will present a seminar titled \'Mutational and kinetic analysis of an aminoacyl tRNA-synthetase\' in Salem Hall, room 10. ";
	myHtml[10] = "On May 5, Wake Forest Graduate student, Erika B. Klorig, will present a seminar titled \'Study of Protein Sulfenic Acid Reactivity\' in Salem Hall, room 207. ";
	
 	var countStart = myHtml.length - 1;
 	var count = countStart;
	
	
	setNews();		//set  initial image
	setInterval( "setNews()", 9000 );  // call image function based on a number of milliseconds
	
	
function setNews()
{
	document.getElementById("newsList").innerHTML = myHtml[count];
	
	if (count < 1)
	{
		count = countStart;
	}
	else
	{
		count = count - 1;
	}
	
}
