var textnumber = 10 ; 
var randomnumber = Math.random() ; 
var rand1 = Math.round( (textnumber-1) * randomnumber) + 1 ; 
text = new Array 
text[1] = "<b>'What the hell is Bacta?' <br> <i>~X-Wing: Crossed Paths~</i></b>" 
text[2] = "<b>'Sithspit! Who knew Coruscant girls could hit so hard?' <br> <i>~The Pink Sweater~</i></b>" 
text[3] = "<b>'Stars, it’s only 0900 and we’re in Med-bay.' <br> <i>~Operation: Babysat~</i></b>" 
text[4] = "<b>'Oh why oh why did it have to be Wedge???' <br> <i>~A Dirty Secret~</i></b>" 
text[5] = "<b>'Uh, case? What case? Hobbie!' <br> <i>~Mistaken Identity~</i></b>" 
text[6] = "<b>'Your pineapple. The one you think is magical?' <br> 'Only against Ewoks.' <br> <i>~There's Something To Be Said...~</i></b>"
text[7] = "<b>'Please tell me I didn’t just walk into the wrong house.' <br> <i>~Inspiration Knocks~</i></b>"
text[8] = "<b>'I have no idea what CorSec is and this whole thing <i>still</i> scares me.' <br> <i>~X-Wing: Crossed Paths~</i></b>"
text[9] = "<b>'You know there is such a thing as knocking?' <br> 'Not when you’re being chased by a...hey! You redecorated!' <br> <i>~There's Something To Be Said...~</i></b>"
text[10] = "<b>'At the very least he could have counted in his head.' <br> 'Hobbie still would have miscounted.' <br> <i>~X-Wing: Crossed Paths~</i></b>"
var mytext = text[rand1] 


document.write(mytext)



