/*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");
img[3] = ("images/alumni_profile_main_image4.jpg");
img[4] = ("images/alumni_profile_main_image5.jpg");
img[5] = ("images/alumni_profile_main_image6.jpg");
img[6] = ("images/alumni_profile_main_image7.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] = ("Danielle Baldino 11");
alt[1] = ("Chris Ann Miller 12");
alt[2] = ("Kathy Ly 11");
alt[3] = ("Jillian Schilller 11");
alt[4] = ("Na-Tasha Bryan 13");
alt[5] = ("Mireille Blacke 10, M11");
alt[6] = ("Chelsea Chiappa 14");

/*The text for the profile heading*/
var profileHeadline = new Array();
profileHeadline[0] = ("THE SJC STORY PROJECT");
profileHeadline[1] = ("THE SJC STORY PROJECT");
profileHeadline[2] = ("THE SJC STORY PROJECT");
profileHeadline[3] = ("THE SJC STORY PROJECT");
profileHeadline[4] = ("THE SJC STORY PROJECT");
profileHeadline[5] = ("THE SJC STORY PROJECT");
profileHeadline[6] = ("THE SJC STORY PROJECT");

/*The text for the profile H1 tag*/
var profileHeader = new Array();
profileHeader[0] = ("in the Navy!");
profileHeader[1] = ("being her own leader");
profileHeader[2] = ("meaningful encounters");
profileHeader[3] = ("compassionate service");
profileHeader[4] = ("above and beyond");
profileHeader[5] = ("transformation");
profileHeader[6] = ("a life on the ice");

/*The profile text*/ 
var profileText = new Array();
profileText[0] = ('"It was the power of those words, \'renewed sense of purpose.\' They summed up everything I ever wanted."');
profileText[1] = ('"I learned here that I am my own leader. I don’t need someone to push me — I can lead myself."');
profileText[2] = ('"Here I was, an American girl in a Japanese city, having these meaningful encounters; on one hand, the people I was meeting were so foreign. On the other, they were recognizable."');
profileText[3] = ('"At the root of everyone there is good."');
profileText[4] = ('"Living in the shelter shaped the way for who I am today."');
profileText[5] = ('"I was able to make the changes I needed to make."');
profileText[6] = ('"What I love most about skating is the freedom I feel on the ice."');

/*The read more link*/ 
var readMoreLink = new Array();
readMoreLink[0] = ("/about/stories/baldino.html");
readMoreLink[1] = ("/about/stories/miller.html");
readMoreLink[2] = ("/about/stories/ly.html");
readMoreLink[3] = ("/about/stories/schiller.html");
readMoreLink[4] = ("http://www.youtube.com/user/SJCConn#p/u/0/dOHVlsncyXU");
readMoreLink[5] = ("http://www.youtube.com/watch?v=ODY0fmjxm7E");
readMoreLink[6] = ("http://www.youtube.com/user/SJCConn#p/u/0/dJyuwpmXLWM");


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]+'">more &gt;&gt;</a>'
		+ '	</div>'
					
		+ '	<a href="/about/stories/default.html">VIEW MORE STORIES</a>'
		+ '</div>'
		   <!--End of featured_alumni_profile-->
		+ '</div>');
		   <!--End of featured_alumni-->
}


