/*Add the image paths here*/
var img = new Array();
img[0] = ("images/alumni_profile_main_image.jpg");
img[1] = ("images/alumni_profile_main_image2.jpg");
img[2] = ("images/alumni_profile_main_image3.jpg");

/*This will randomly select which Featured Alumni to show based on the number of images that are in the img array.*/
var random = (Math.floor(Math.random()*img.length))+1;

/*The size of the images. Do not modify!*/
var size = " width='183' height='259'";

/*The alt text for the images*/
var alt = new Array();
alt[0] = ("Jennifer Albert 03");
alt[1] = ("Christina Coute 05");
alt[2] = ("Nova Dallas 11");

/*The text for the profile heading*/
var profileHeadline = new Array();
profileHeadline[0] = ("ALUMNAE/I PROFILE");
profileHeadline[1] = ("ALUMNAE/I PROFILE");
profileHeadline[2] = ("CURRENT STUDENT PROFILE");

/*The text for the profile H1 tag*/
var profileHeader = new Array();
profileHeader[0] = ("realizing her dream");
profileHeader[1] = ("a purposeful education");
profileHeader[2] = ("a path to citizenship");

/*The profile text*/ 
var profileText = new Array();
profileText[0] = ("'Saint Joseph College was more than a school to me, it was a community.'As a medical student studying to be an ophthalmologist, Jennifer Albert '03 is fulfilling her lifelong dream.");
profileText[1] = ("'Saint Joseph College was the perfect place for me.'  Christina Coute '05 entered the work force at age 16. In the years since, she has negotiated a complex schedule of work, school, and life.");
profileText[2] = ("'Working in the field, I heard about the College’s Nursing program and knew I would get a great education.'  Nova has nothing but praise for her time at the College even though she is juggling a busy schedule.");

/*The read more link*/ 
var readMoreLink = new Array();
readMoreLink[0] = ("/admissions/in_the_spotlight/alumnae-i_spotlights/albert.html");
readMoreLink[1] = ("/admissions/in_the_spotlight/alumnae-i_spotlights/coute.html");
readMoreLink[2] = ("/admissions/in_the_spotlight/current_students/dallas.html");


function featuredTabs()
{
	document.write('<div id="featured_alumni">'
		+ '<div id="featured_alumni_image">'
		+ 	'<img src="'+img[random -1]+'"' + size + 'alt="'+alt[random -1] + '" />'
		+ '</div>'
		
		+ '<div id="featured_alumni_profile">'
		+ '	<span class="profile_headline">'
		+ 		profileHeadline[random -1]
		+ '	</span>'
		
		+ '	<div id="featured_alumni_profile_text">'
		+ '		<h1>'
		+			profileHeader[random -1]
		+ '		</h1>'
		+ '		<p><em>'
		+ 	 		profileText[random -1]
		+ '		</em></p>'
		+ '		<br />'
		+ '		<a href="'+readMoreLink[random -1]+'">read more &gt;&gt;</a>'
		+ '	</div>'
					
		+ '	<a href="/admissions/in_the_spotlight/">VIEW MORE PROFILES</a>'
		+ '</div>'
		   <!--End of featured_alumni_profile-->
		+ '</div>');
		   <!--End of featured_alumni-->
}

