/*
Rotating image or text(You can use for changing banners)
Author: Narayan Chand Thakur
Source: http://ncthakur.itgo.com/
This may be used freely as long as this message is intact.
*/


//you may add your image file or text below
var item=new Array()
item[0]="&ldquo;Joseph Wambaugh's best book yet. <em>Hollywood Moon</em> is full of hilarious anecdotes that ring absolutely true, and the 'through-story' about the Odd Couple computer thieves and the crazed stalker is especially strong. Most of all, I was deeply moved by the story of Dana Vaughn and Hollywood Nate.  Re-encountering Nate and the surfer dudes and Compassionate Charley is like coming back to crazy but wonderful old friends.  This book also made me eager to find a midget. And bowl with him.&rdquo; <br>&ndash; Stephen King"

item[1]="PRAISE FOR<br>HOLLYWOOD HILLS<br>&ldquo;You do not want to miss this fun book.&rdquo; <br>&ndash; <em>Bookloons.com</em>"

item[2]="PRAISE FOR<br>HOLLYWOOD HILLS<br>&ldquo;The characterizations are so rich, vivid, colorful and flamboyant that they often make you laugh out loud.&rdquo; <br>&ndash; <em>Pick of the Literate</em>"

item[3]="PRAISE FOR<br>HOLLYWOOD HILLS<br>&ldquo;This is Wambaugh at his best&hellip;A great read.&rdquo; <br>&ndash; <em>TheReview Broads.com</em>"

var current=0

var ns6=document.getElementById&&!document.all
function changeItem(){
if(document.layers){
document.layer1.document.write(item[current])
document.layer1.document.close()
}
if(ns6)document.getElementById("div1").innerHTML=item[current]
{
if(document.all){
div1.innerHTML=item[current]
}
}
if (current==3) current=0
else current++
setTimeout("changeItem()",12000)
}
window.onload=changeItem





