	// Create array for random imagae output -- sorry, but full path line must to be used to prevent level of ambiguity that can arise, depending on the location of the URL that's using the script.
	var theImages = new Array()
		theImages[0] = 'http://honors.ucdavis.edu/images/profiles/js1.jpg' //  Harjot Singh Maan
		theImages[1] = 'http://honors.ucdavis.edu/images/profiles/js2.jpg' // Candace Markley
		theImages[2] = 'http://honors.ucdavis.edu/images/profiles/js3.jpg' // Gina Werfel
		theImages[3] = 'http://honors.ucdavis.edu/images/profiles/js4.jpg' // Katrina Lindsay
		theImages[4] = 'http://honors.ucdavis.edu/images/profiles/js5.jpg' // Jim Shackelford
	// Create array for bio blurbs to correspond with student and faculty images
	var theBlurbs = new Array()
		theBlurbs[0] = '<p>ISHP has been an integral part of my years at UC Davis. Participating in the program as a freshman, tutor, and ISHP Honors Thesis student has greatly enhanced my college experience, allowing me to grow both as a student and a person. I would highly recommend ISHP to every student who has the opportunity to participate." <br /><br /><strong>Harjot Singh Maan, Class of 2007</strong></p>'
		theBlurbs[1] = '<p>Ater graduating from a very small highschool, I was extremely nervous about navigating my way through a large research university such as UC Davis. The Integrated Studies Honors Program served as the perfect stepping stone. With ISHP, I got the best of both worlds -- the abounding opportunity for research and study of a large university with the sense of community and personal attention of a smaller residential program.<br /><br /><strong>Candace Markley, Class of 2009</strong></p>'
		theBlurbs[2] = '<p>What amazed me was the students\' work ethic. I probably worked them way too hard, as one student was rumored to have spent more than sixty hours on her old master reproduction project (an amazing study!), but it was inspiring to see them take an idea and push it the maximum. The most fun were our field trips, particularly to the Legion of Honor Museum in San Francisco, where one student pulled me over with great excitement to say there were real Monet paintings in the next room. <br /><br /><strong>Gina Werfel, <br />Professor, Dept of Art and Art History</strong></p>'
		theBlurbs[3] = '<p>Integrated Studies allows you to have the opportunity to create a niche for yourself at the university level as a freshman, as well as giving you the freedom to interact with like-minded students, faculty, and staff. I woould definitely recommend the Integrated Studies Honors Program; it has had a huge positive impact on my college experience!”<br /><br /><strong>Katrina Lindsay</strong></p>'
		theBlurbs[4] = '<p>Welcome to the Integrated Studies Honors Program web site. After serving as Associate Dean of the College of Engineering for many years, I have been, since July 2001, the Director of the Integrated Studies Honors Program (ISHP). I have thoroughly enjoyed working with this outstanding group of students and the ISHP faculty, among the most stimulating teachers on campus. The goal of the ISHP is to integrate knowledge from:</p><ol><li>The arts and humanities</li><li>The social sciences</li><li>The natural sciences and engineering</li></ol><p>This academic program, combined with a close-knit residential community, provides an exceptional experience for our ISHP students.</p><p>Along with the ISHP Program Manager, Jenny Moody, I encourage you to let us know if we can provide information beyond that which you find on our web site. Feel free to contact me at jfshackelford@ucdavis.edu or 530-752-9906.</p><p><strong>James F. Shackelford,<br />Director,<br />Integrated Studies<br />Honors Program</strong></p>'
	var index = 0
	var p = theImages.length;
	var preBuffer = new Array()
	for (index = 0; index < p; index++){
	   preBuffer[index] = new Image()
	   preBuffer[index].src = theImages[index]
	}
	var randomImage = Math.round(Math.random()*(p-1));
	// Create output functions, one for the images, one for the blurbs
	function outputImage(){
		document.write('<img style="margin-left: 10px; border: 1px solid #002666;" src="'+theImages[randomImage]+'">');
	}
	function outputBlurbs(){
		document.write(theBlurbs[randomImage]);
	}
//-->