var length=12;
var q=new Array(length);
var a=new Array(length);
	q[0]="Please press the Reset Button and try again.";
	a[0]="King of Landen (1st Generation)";

	q[1]="Father's too weak to fight. I must do it!";
	a[1]="Kara (3rd Generation: Sean)";

	q[2]="The black sword! Orakio, you've returned! I'm so glad to meet you again before I....";
	a[2]="Miun (3rd Generation)";

	q[3]="Layans should not marry despicable Orakians!";
	a[3]="Villager in Cille (1st Generation)";

	q[4]="Arm yourself well and go find Maia!";
	a[4]="Lena (1st Generation)";

	q[5]="Our marriage will bring peace to all.";
	a[5]="Laya (2nd Generation: Nial)";

	q[6]="After 18 years of rest, I yearn for adventure!";
	a[6]="Laya (3rd Generation: Aron)";

	q[7]="If Ayn had married Sari, we might have won.";
	a[7]="Villager in Landen (3rd Generation: Sean)";

	q[8]="You fools have done everything we wanted!";
	a[8]="Villager in Lashute (3rd Generation)";

	q[9]="Thank Orakio for Sari! Lune can't beat her!";
	a[9]="Villager in Landen (3rd Generation: Sean)";

	q[10]="You have freed me; destroy Dark Force!";
	a[10]="Rulakir (3rd Generation)";

	q[11]="The evil city seemed to scream a hideous cry as it fell from the sky and sank deep into the lake.";
	a[11]="Ending";

function randomQuote(){
	var randomIndex=Math.floor(Math.random()*length);

	document.write("&quot;<i>");
	document.write(q[randomIndex]);
	document.write("</i>&quot;");
	document.write(" - ");
	document.write(a[randomIndex]);
}