// JavaScript Document// note additions or modifications must happen to all three elements<!--function randomImage() {//init array and define imagesimgArray = new Array(	"images/hp_students.jpg",	"images/hp_josefa.jpg",	"images/hp_nandini.jpg",	"images/hp_josefa_manuel.jpg",	"images/hp_manuel.jpg");//init array and define captionscaptionArray = new Array(/* martha */"ACE is a great program all around because it not only helps you academically but also provides contact with older students who are willing to give you advice on courses and resources that are available on campus. It has allowed me to feel more comfortable with the course material for chemistry and has given me a place to interact with other students from different colleges who are taking the same class.",			/* josefa */"The Academic Excellence Program is more than just an academic resource. It gives community support to better students' success within the university. As a student and staff member I was able to learn about internships, because ACE staff are constantly letting us know about opportunities. I love this program. ACE is the place when you want to ACE your classes.",/*sarah*/"I was lost before I came to ACE. The campus is huge and I didn't know what classes to take or how to prepare for them. Not only was ACE an amazing help with my studies, but the staff and student mentors showed me what classes to take and how to do so well in them. I love ACE.",	/*dora*/"Being part of the ACE program at UCSC went well beyond my succeeding in introductory science courses. It taught me invaluable study skills necessary for thriving in upper-division courses, as well as for tackling the demanding graduate course work at UC Irvine. It provided me with information about undergraduate research opportunities and internships, as well as scholarships. ACE was directly integral to my success in getting into graduate school, because it led me to the experiences and opportunities necessary to compete with other students from around the world for viable positions in distinguished graduate programs.",/*manuel*/"The ACE program has opened many doors for me. If it weren't for the academic support I received from ACE, I wouldn't be a science major today. The ACE staff introduced me to the idea of undergraduate research, and now I am part of the UC LEADS Program, working in chemistry professor Scott Lokey's laboratory. ACE is the best. It's more than academic support; it's a family and a comfortable environment, where you can shine with your academic skills."		);//init array and students namesnameArray = new Array( 	/* martha */"<b>Martha Arciniega</b><br><i>Freshman, Marine Biology</i>",	/* josefa */"<b>Josefa Manzo</b><br><i>Junior, Biochemistry and Molecular Biology</i>",	/*sarah*/"<b>Sarah Burney</b><br><i>B.S. Health Sciences, Accepted at Johns Hopkins School of Nursing</i>",	/*dora*/"<b>Dora Guzman</b><br><i>Candidate for Ph.D. in Chemistry, UC Irvine</i>",	/*manuel*/"<b>Manuel Nuņez</b><br><i>Junior, Biochemistry and Molecular Biology</i>");//generate randomindex = Math.floor(Math.random() * imgArray.length);//write out imagedocument.write("<img alt='ACE Students' src=" + imgArray[index] + " width='310' height='160' border='0'>");document.write("<table width='100%' border='0' cellspacing='0' cellpadding='14'>");document.write("<tr><td>");document.write("<p class='paragraphtext'>");document.write("<strong>");document.write("STUDENT TESTIMONIAL");document.write("</strong>");document.write("</p>");document.write("<p class='paragraphtext'>");document.write("&#8220;");document.write(captionArray[index]);document.write("&#8221;");document.write("</p>");document.write("<p class='paragraphtext'>");document.write(nameArray[index]);document.write("</p>");document.write("</td></tr></table>");}//-->