var quote=new Array();
quote[0]='\&quot\;The plot of an Alafair Burke thriller doesn\'t just rip from the headlines. She\'s one step ahead of them.\&quot\; \&mdash\;Harlan Coben';
quote[1]='\&quot\;[Burke] is a terrific web spinner. She knows when and how to drop clues to keep readers at her mercy.\&quot\; \&mdash\;Entertainment Weekly';
quote[2]='\&quot\;Alafair Burke has created a winning heroine in Ellie Hatcher, someone to root for.\&quot\; \&mdash\;Tami Hoag';
quote[3]='\&quot\;Alafair Burke is one of those rare writers whose books are both scary and cerebral.\&quot\; \&mdash\;Sandra Brown';
quote[4]='\&quot\;Alafair Burke delivers a first-rate thriller. Absolutely riveting.\&quot\; \&mdash\;Lisa Gardner';
quote[5]='\&quot\;Burke leaves her principle characters little time to sleep; readers will relate.\&quot\; \&mdash\;Publishers Weekly';
quote[6]='\&quot\;A force to be reckoned with in the thriller genre.\&quot\; \&mdash\;Chicago Sun-Times';
quote[7]='\&quot\;Burke has created characters we can believe in, characters we want to meet again and again.\&quot\; \&mdash\;About.com';
quote[8]='\&quot\;Her skill with language makes for fast-paced reading, and her ability to populate her novels with \'real\' people adds verisimilitude to all of the action.\&quot\; \&mdash\;Bookreporter.com';

var speed=7000;    /*this is the time in milliseconds adjust to suit*/
var q=0;

function showQuote() {

     document.getElementById("quotes").innerHTML=quote[q];
     q++;
if(q==quote.length) {
     q=0;
  }
}
setInterval('showQuote()',speed);
   
