boolean shouldrun = true;
public void run()
{
while(shouldrun){
FMLRandomPost post = new FMLRandomPost();
String text = post.getText();
wrapLabelText(label, text);
authorlabel.setText(post.getAuthor()+" says FML:");
try
{
Thread.sleep(20000);
}
catch(InterruptedException ie)