var slideArray = new Array()

slideArray[0]='<a href="http://bits.blogs.nytimes.com/2009/08/19/study-finds-that-online-education-beats-the-classroom/" target=_blank><b style="font-size: 14px;">"Online learning today is not just better than nothing it actually tends to be better than<br> conventional instruction."</b><br><b style="font-size: 10px;"></b>-Barbara Means, educational psychologist, as quoted by The New York Times\' Bits blog*</a> ';

slideArray[1]='<a href="http://r.smartbrief.com/resp/dquECkaXlAeidmqQfCzagkfCpnlS" target=_blank><b style="font-size: 14px;">"If these times have taught anybody anything, it\'s the importance to reinvest in your career<br> and continue to grow and push yourselves."</b><br><b style="font-size: 10px;"></b>-Lee Kushner, recruitment expert, as quoted by Search Security at TechTarget.com</a> ';

function firstSlide()

{

document.getElementById('div_display').innerHTML=slideArray[0];

setTimeout("secondSlide()",20000);

}

function secondSlide()

{

document.getElementById('div_display').innerHTML=slideArray[1];

setTimeout("firstSlide()",10000);

}
