<!--
window.onload = function() {
	/*random integer between 0 and 3, inclusive*/
   randomnumber = (Math.floor((3-(-1))*Math.random()));
   rotateNews(randomnumber,8000);
 }
/* set images for stories */
   var img0 = new Image();
   img0.src = '/offices/development/images/employeegiving/mikeranderson.jpg';
   var img1 = new Image();
   img1.src = '/offices/development/images/employeegiving/kevinpalmer.jpg';
   var img2 = new Image();
   img2.src = '/offices/development/images/employeegiving/karenfry.jpg';
   var img3 = new Image();
   img3.src = '/offices/development/images/employeegiving/johnklein.jpg';
   var img4 = new Image();
   img4.src = '/offices/development/images/timmons.jpg';
   
/* making news items, setting variables */   
   var newsArray = new Array();

   newsArray[0] = new makeNews('0',"I give because the college provides access and opportunity for education by bringing together motivated students and dedicated faculty at a reasonable cost.",'Mike Randerson',img0).write();
   newsArray[1] = new makeNews('1',"I'm inspired by the sense of community and the belief that Columbia College has a unique ability to contribute to many different areas of our society through education, which produces a more informed populace&mdash;the essence of a free society.",'Kevin Palmer',img1).write();
   newsArray[2] = new makeNews('2',"I'm inspired by the opportunity to give back a bit to an institution that provides a pleasant work environment and excellent benefits to its employees and to see my money provide scholarships to a high quality of student.",'Karen Fry',img2).write();
   newsArray[3] = new makeNews('3',"I'm inspired by the visible improvement that has been made in the eight years I have been here.  The student union, Missouri Hall, the new technology services area, the Southwell Complex and, of course, the Marvin Owens Soccer Stadium are a few of the most notable projects.",'John Klein',img3).write();
   newsArray[4] = new makeNews('4',"Christian College nurtured and encouraged my love of learning so that the passion has remained at the center of my life for the past 50 years. I am greatly indebted to the teachers who guided and challenged me to explore the world around me and the world within me.","Anita Timmons '68",img4).write();
-->