// To add quotes, simply add a new line to the array below.  Be sure to remember the commas and []s!  The last entry does not have a comma
//   Also be careful not to make the quotes too large.  If you add a quote that is too big, it will stretch the table and the homepage will 
//   look really funny.

var quotes = [
			  	["A sense of humor has been a positive asset that is helping me to succeed in the trades.","Sandi, Step Up Graduate"],
				["Now I know girls can do anything!","Caitlyn, Rosie's Girls Vermont"],
				["I encourage every woman to join a tech program and pursue an extraordinary career.","Women Can Do participant"],
				["I learned that anything men can do, women can do just as well, or even better.","Women Can Do participant"],
				["This is my third Women Can Do! It must be awesome if I keep coming back!","Women Can Do participant"],
				["I am good at stuff I never thought about.","Women Can Do participant"],
				["Rosie's Girls made me feel strong and more happy about myself.","Sarah, Rosie's Girls Vermont"],
				["I don't have to limit myself. And I can do anything I want.","Women Can Do participant"]
			];


// Don't touch this...
var randomIndex = Math.floor(Math.random()*quotes.length);
document.write("<i>\"" + quotes[randomIndex][0] + "\"<br>&nbsp;&nbsp;- " + quotes[randomIndex][1] + "</i>");

// Questions?  Feel free to contact me at huwilerm {At] champlain {D0T] edu

