/*
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]="&ldquo;Spare and punchy prose fuels descriptions so on target that readers will feel they are riding shotgun, gazing out on Tinseltown's tawdry landscape.&rdquo; <br>&ndash; <em>Publishers Weekly</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==2) current=0
else current++
setTimeout("changeItem()",12000)
}
window.onload=changeItem





