var Quotation=new Array()
// Do not change this.

Quotation[0] = "This mission was well worth the lives of you and your men. - Aki";
Quotation[1] = "PLEASE tell me we're risking our lives for that little plant. - Ryan";
Quotation[2] = "Report any aberrant behavior in Dr. Ross to the Major immediately. - General Hein";
Quotation[3] = "We're just helping the Captain out a little. Have you seen the way he looks at her? - Ryan";
Quotation[4] = "Doctor, there's a war going on. Nobody's young anymore. - Aki";
Quotation[5] = "Ahh... jeez Jane. do you mind if we stop talking? I'm trying to concentrate here. - Neil";
Quotation[6] = "I just... I don't know how much time I have left. - Aki";
Quotation[7] = "How could they survive a trip across space on a chunk of rock? - Neil";
Quotation[8] = "This is definitely not a good place to be. - Gray";




var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}
showQuotation();