/* This script and many more are available free online at
The JavaScript Source!! http://javascript.internet.com
Created by: Sandeep Gangadharan | http://sivamdesign.com/scripts/ */
var text = 0;

var message=new Array();
  message[0] = "I really have to thank Christopher Pimental for helping shape the story (Performance Anxiety). I still consider him one of the best editors in the game - Keith Rawson via Facebook"
  message[1] = "You were the best teacher.  I learned so much. Thank you for everything.  I transferred universities but am excelling in my new writing classes - Cristina."
  message[2] = "Christopher Pimental was an amazing editor. He taught me more about writing in a month than years of creative writing classes ever did - Chad Eagleton - Via Spinetingler Mag."
  message[3] = "Why he doesn't write more is beyond me.  He's better than so many and he refuses to write - The Mrs. Train Wreck"

message[4] = "The Bitch Pit?  What kind of person writes about stuff like that?  You've got issues - Anonymous (too scared to put their name)"

message[5] = "Pimental’s The Bitch Pit...will anger many. Hell, it should. I won’t spoil...— in fact, I won’t spill any details...except to say the story involves Colombian midget rebels...I bet you won’t be able to stop reading - Bookgasm"

message[6] = "Sepia: Nothing nice here! The piece is heartbreaking with every moment gone before, alone with pain oozing ever so slowly.(Mike)"

message[7] = "You are Pathetic. (Brian Murphy, La Grange, IL. in response to The Vigg Train)"

message[8] = "Does it always have to be about something bad... I mean, it's good, but it would be better if you wrote about something nice for a change...(DANI F.)"

message[9] = "The Train Wreck brings it hard.(JASON in Miami)"

message[10] = "Sepia is a masterpiece, Chris (Carey P.)"





function changeText() {
  if (message.length > 0) {
    document.change.descript.value=message[text];
    text++;
  }
  if (text == 15) {text = 0; }  // change the # 4 at the left to the maximum # of message lines you want included
    window.setTimeout("changeText()", 5000); }  // change the # on the left to adjust the speed of the
                                               // scroll. The smaller the # the faster the speed

// Multiple onload function created by: Simon Willison
// http://simon.incutio.com/archive/2004/05/26/addLoadEvent
function addLoadEvent(func) {
  var oldonload = window.onload;
  if (typeof window.onload != 'function') {
    window.onload = func;
  } else {
    window.onload = function() {
      if (oldonload) {
        oldonload();
      }
      func();
    }
  }
}

addLoadEvent(function() {
  changeText();
});

