// JavaScript Document

function WriteEmail(userId, domain, topLevel)
{
	document.write("<a href=\"mailto:");
	document.write(userId);
	document.write("@");
	document.write(domain);
	document.write(".");
	document.write(topLevel);
	document.write("\">");
	document.write(userId);
	document.write("@");
	document.write(domain);
	document.write(".");
	document.write(topLevel);
	document.write("</a>");
} // WriteEmail

function WriteHeadBanner()
{
	var numImages = 5;
	index = Math.floor(Math.random() * numImages);
	var imageString = "img/headerbar/hb" + index + ".png";
	var outStr = "<" + "img src=\"" + imageString + "\" width=\"950\" height=\"100\" alt=\"Florida Symphony Youth Orchestra\" align=\"right\">";
	document.writeln(outStr);
}

function WriteSeniorQuote()
{
	var numQuotes = 3;	// the number of quotes
	ndx = Math.floor(Math.random() * numQuotes);
	
	var arQuotes = new Array(numQuotes);
	var arCite = new Array(numQuotes);
	var arImages = new Array(numQuotes);
	
	arQuotes[0] = "The FSYO is an incredibly enriching experience and has without a doubt taught me that with hard work, responsibility and dedication, nothing is impossible.";
	arCite[0] = "Caitlin Pequignot, 2010 alumnus who will be attending Yale University in the fall";	
	arImages[0] = "img/senior_pic/pequignot.png";
	
	arQuotes[1] = "The Florida Symphony Youth Orchestra gave me the incredible opportunity to perform professional repertoire with skilled musicians who share the same passion for orchestral music as I do. My years with FSYO have bolstered my musicality, prepared me for collegiate music studies, emboldened my love of symphony orchestra music, and given me countless rewarding memories.";
	arCite[1] = "Scott Harman, 2010 alumnus who will be attending DePaul University in the fall";	
	arImages[1] = "img/senior_pic/hartman.png";
	
	arQuotes[2] = "When I joined FSYO it was thanks to my parents, so I went in wondering why I was wasting my Sundays, but after the first rehearsal I couldn't wait for the next week. Since joining FSYO I have learned numerous skills and made friends that will last a lifetime, and wouldn't trade the experience for anything else.";
	arCite[2] = "Susan Senseman, 2010 alumnus who will be attending the University of Florida this fall";	
	arImages[2] = "img/senior_pic/senseman.png";	
	
	// now output one of them to be displayed.
	
	var tableStr = "<tab" + "le border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"><tr><td style=\"border-width:0px; text-align:right; vertical-align:middle; font-size:1.5em;\">";
	var quoteStr = "\"" + arQuotes[ndx] + "\"";
	var citeStr =  "<br><em>" + arCite[ndx] + "</em></td><td style=\"border-width:0px; text-align:right;\">";
	var imgStr = "<img src=\"" + arImages[ndx] + "\" alt=\"" + arCite[ndx] + "\" /></td></tr></table>";
	
	document.write(tableStr + quoteStr + citeStr + imgStr);
}