<!--

/*
How to add an additional image.


-Copy these line below:
profile_image[0] = '<a href="/life_on_campus/meet_our_students/student_profiles/cassas.htm"><img src="/assets/images/profiles/profile1.jpg" width="125" height="97" alt="John Cassas" /></a>';
profile_text[0] = '"Not many colleges offer a sports management concentration..."<br /><br />-John Cassas';

-Paste this line before the END OF THE LINE text

-Increment the number that is located in the "profile_image[1]" and "profile_text[1]" text by 1 of the previous number.

-Make sure the numbers in profile_image and profile_text match.

-Change the image name, width, height, and alt tags to match the new image you will be using.

-Change the link that is inside the profile_image to match the where you like the user to go when they click on the profile image.

-Add a new quote into the "profile_text" quotes.

-Save and Upload.

*/

function chooseProfile( profile ) {
	
var profile_image = new Array();
var profile_text = new Array();

// 1st Profile
profile_image[0] = '<a href="/who_we_are/meet_our_students/student_profiles/cassas.htm"><img src="/assets/images/profiles/profile1.jpg" width="125" height="97" alt="John Cassas" /></a>';
profile_text[0] = '"Not many colleges offer a sports management concentration..."<br>-John Cassas';

// 2nd Profile
profile_image[1] = '<a href="/academics/the_concordia_experience/experiential_learning/careers_and_internships/successful_alumni/weinand.htm"><img src="/assets/images/profiles/profile2.jpg" width="125" height="97" alt="Dieter K. Weinand" /></a>';
profile_text[1] = '"A liberal arts education is essential for any career..."<br>-Dieter K. Weinand';

// 3rd Profile
profile_image[2] = '<a href="/academics/faculty/faculty_profiles/bucher.htm"><img src="/assets/images/profiles/bucher_profile.jpg" width="125" height="97" alt="Dr. Karen Bucher" /></a>';
profile_text[2] = '"Of special meaning to me is the fact that many of my students have gone on to become teachers&mdash;chemistry teachers in fact..."<br>-Dr. Karen Bucher';

// 4th Profile
profile_image[3] = '<a href="/who_we_are/meet_our_students/student_profiles/solari.htm"><img src="/assets/images/profiles/profile_solari.jpg" width="125" height="97" alt="Jenna Solari" /></a>';
profile_text[3] = '"Concordia College is a place where anyone can blossom into a person of integrity and confidence..."<br>-Jenna Solari';

// 5th Profile
profile_image[4] = '<a href="/academics/the_concordia_experience/experiential_learning/careers_and_internships/successful_alumni/wallace-hines.htm"><img src="/assets/images/profiles/profile_wallace-hines.jpg" width="125" height="97" alt="Dierdre Wallace-Hines" /></a>';
profile_text[4] = '"A liberal arts education is an essential foundation to the clinical field of social work..."<br>-Dierdre Wallace-Hines';

// 4th Profile
profile_image[5] = '<a href="/who_we_are/meet_our_students/student_profiles/rufleth.htm"><img src="/assets/images/profiles/profile_rufleth.jpg" width="125" height="97" alt="Ellie Rufleth" /></a>';
profile_text[5] = '"I often talk with my friends who have graduated from Concordia\'s Social Work Program. I\'m inspired by their stories..."<br>-Ellie Rufleth';

// C. David Leonard Removed for now.
// profile_image[2] = '<a href="#"><img src="/images/profile3.jpg" width="125" height="97" border="0" alt="C. David Leonard" /></a>';
// profile_text[2] = '"We get to know our students well and that creates a strong foundation for dialog among students and faculty..."  <br><br>-C. David Leonard';

//This line picks an image at random from the list you entered above
var profileChoice;
if ( profile ) { profileChoice = profile; }
else { profileChoice = (Math.round(Math.random()*(profile_image.length-1))); }

var profile_img=profile_image[profileChoice]
var profile_txt=profile_text[profileChoice]

//This line applies the image to your rotating_image
document.write(profile_img);
document.write("<br>"+profile_txt);
}

-->