message     = '"When I get a little money, I buy Laymon books... and if any is left, I buy food and clothes."^' +
                '"No one writes like Laymon, and you\'re going to have a good time with anything he writes." -Dean Koontz^' +
                '"If you\'ve missed Laymon, you\'ve missed a treat." -Stephen King^' +
                '"Stephen King without a conscience" -Dan Marlowe^' +
                '"Laymon uses a typewriter ribbon soaked in cold blood." -Burt Hirschfeld, author of Fire Island^' +
				'"One of the best, and most underrated, writers working in the genre today." -Cemetery Dance^' +
				'"This author knows how to sock it to the reader" -The Times (UK)^' +
				'"In Laymon\'s books, blood doesn\'t so much drip, drip as explode, splatter and coagulate. It\'s dynamic^' +
				'is described in salivating detail." -Independent^' +
				'"A brilliant writer." -Sunday Express (UK)^' +
		    	'"If you\'re in the mood for a little rollercoaster nightmare ride, then step right up...Laymon\'s going to take you into some^' +
				'dark places you won\'t easily forget." -Charles de Lint^' +
				'"A gut-crunching writer." -Time Out^' +
				'"Gruesome goings-on- and plenty of them." -Publishers Weekly^' +
				'"Laymon\'s biggest strength is that he is able to provide lighthearted fun and disturb at the same time" -Fear^' +
			    '"He has a straightforward storytelling style and an uncanny grasp of just what makes characters work. In just a few sentences^' +
				'he presents those characters to his readers as fully-rounded people, then puts them in the worst situations imaginable,^' +
				'so that readers turn the pages so fast they leave burn marks on the paper." -Horrorstruck^' +
				'"...a very fast, gripping read with some neat and clever turns of plot. The action scenes have a real, you-are-there^' +
				'electricity, and gave me some scarifying jolts." -Robert McCammon on Night Show^' +
				'"The scares are shocking and they stay with you. This is not a book for the timid." -Gary Brandner, author of The Howling^' +
				'"A chilling horror story...electric...its lightheaded tone sets up some white-knuckle moments, and the ending is more than^' +
				'worthy of Laymon\'s buildup." -Publishers Weekly on The Stake^' +
				'"Dick Laymon isn\'t half as crazy as people think. In fact, he\'s a very nice man and thoroughly normal- though he is desperate^' +
				'to conceal this niceness lest it detract from his image of dark degeneracy. I once saw him fix the broken wing of a dying^' +
				'sparrow and then nurse it back to health. Of course once he nursed it back to health, he devoured it alive, feathers and all,^' +
				'in two bites. But I suppose he was just hungry." -Dean Koontz^' +
                "^"
  scrollSpeed = 35
  lineDelay   = 1500

  // Do not change the text below //

  txt         = ""

  function scrollText(pos) {
    if (message.charAt(pos) != '^') {
      txt    = txt + message.charAt(pos)
      status = txt
      pauze  = scrollSpeed
    }
    else {
      pauze = lineDelay
      txt   = ""
      if (pos == message.length-1) pos = -1
    }
    pos++
    setTimeout("scrollText('"+pos+"')",pauze)
  }

  // Unhide -->
scrollText(0)