 <!--

 

	var html = new Array(11);

	html[0] = "Professor Dilip Kondepudi leads his first year seminar in a discussion of forms of energy during class in Salem Hall on Thursday, September 4, 2008. Kondepudi's first year seminar class focuses on energy and energy policy.";

	html[1] = "Wake Forest computer science professor David John, left, talks with graduate student Matt Holt after class on Wednesday, September 3, 2008.";

	html[2] = "Wake Forest psychology professor Michael Furr talks with junior psychology major Emilia Brown outside his office in Greene Hall on Wednesday, September 3, 2008.";

	html[3] = "Tom Phillips, the director of the Wake Forest Scholars program, talks with senior physics major Patrick Nelli about his scholarship applications on Friday, August 29, 2008, in the atrium of the Z. Smith Reynolds Library.";

	html[4] = "Wake Forest physics professors Jed Macasko, in white, Martin Guthold, in gray, and Keith Bonin, in yellow, work in Guthold's lab in Olin Hall on Wednesday, August 6, 2008. The research is part of the new Lab-on-Bead processing, a novel technique for screening millions of chemicals simultaneously at the nanoscopic level, being developed by researchers at Wake Forest to speed the discovery of new drugs.";

	html[5] = "Wake Forest senior Catherine Denkler '09 works with chemistry professor Christa Colyer on a research project. Catherine is exploring how small DNA sequences known as aptamers can be used to identify and select specific target molecules. Her investigations involve a technique known as capillary electrophoresis, and by affixing a fluorescent probe on the DNA aptamer, she is able to use lasers to detect the complex formed between the aptamer and the target.";

	html[6] = "Wake Forest Political Science professor David Coates, the Worrell Professor of Anglo American Studies, teaches his seminar class in Tribble Hall on Thursday, April 17, 2008.";

	html[7] = "Wake Forest Student Life director Mike Ford talks with senior Nick Babladelis '08 about his post-college plans on Tuesday, April 15, 2008. ";

	html[8] = "Wake Forest English professor Barry Maine teaches his freshman seminar class in Reynolda House Museum of American Art on Tuesday, April 15, 2008. Freshmen Joel Ang and Leigh Anne White talk with Prof. Maine about their final projects.";

	html[9] = "Dr. Edwin Wilson, Wake Forest emeritus professor of English and Provist Emeritus, talks about the poetry of World War I in art professor David Lubin's class in Scales Fine Arts Center on Tuesday, April 8, 2008.";

	html[10] = "Wake Forest hosts its second Undergraduate Research Day where students can present their research to the campus community in the Benson Center on Friday, September 26, 2008. Biology professor Gloria Muday talks with physics major Matt Gottbrecht about his work.";

	html[11] = "Wake Forest Health and Exercise Science professor Paul Ribisl teaches his freshman seminar class in Reynolds Gym on Tuesday, April 10, 2007. ";

	html[12] = "Wake Forest anthropology professor Ellen Miller works with recent graduate Kathryn Nesbit ('08) and junior Crystal Williams ('10) in her campus laboratory on Monday, August 8, 2008. They are examining skulls from various non-human primates.";

	

	var ImgSrc = new Array(11);

	ImgSrc[0] = "./images/md_20080904seminar0970.png";

	ImgSrc[1] = "./images/md_20080903john0690.png";

	ImgSrc[2] = "./images/md_20080903furr0557.png";

	ImgSrc[3] = "./images/md_20080829phillips0305.png";

	ImgSrc[4] = "./images/md_20080806research8146.png";

	ImgSrc[5] = "./images/md_20080806chemistry7888.png";

	ImgSrc[6] = "./images/md_20080417coates2054.png";

	ImgSrc[7] = "./images/md_20080415nick2118.png";

	ImgSrc[8] = "./images/md_20080415seminar1177.png";

	ImgSrc[9] = "./images/md_20080408class9113.png";

	ImgSrc[10] = "./images/md_20080926research5685.png";

	ImgSrc[11] = "./images/md_20070410seminar3602a.png";	

	ImgSrc[12] = "./images/md_20080811miller8325.png";

	

 

 	var count = 0;

  	var RndSec = new Date();

	RndSec2 = RndSec.getSeconds() / 12;

	count = Math.round(RndSec2);		//randomize the first image shown

	setImg();		//set  initial image

	setInterval( "setImg()", 10000 );  // call image function based on a number of milliseconds

	

	

function setImg()

{

	document.getElementById("updateArea").innerHTML = html[count];

	document.Img.src = ImgSrc[count];

	

	if (count > 11)

	{

		count = 0;

	}

	else

	{

		count = count + 1;

	}

	

}





  //-->