/*
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]="<p><b>&quot;Original, wrenching and wonderfully realized&hellip; a compellingly honest memoir of a sibling relationship&hellip; the ignored hot-button topic of brothers and sisters that will reverberate with readers of all ages.&quot;</b><br> &mdash; Tina Brown</p>"

item[1]="<p><b>&quot;APPLES AND ORANGES is genius&hellip; Marie Brenner tells her true story with painful rawness and the cold, sure honesty of an x-ray machine. It's the most beautifully written book I’ve read in years.&quot;</b><br> &mdash; Lesley Stahl</p>"

item[2]="<p><b>&quot;I wept at the end, and not least for Marie Brenner's courage in biting into a forbidden fruit that hangs from every family tree. One of our best investigative reporters has here filed the story she was born to write.&quot;</b> &mdash; Judith Thurman</p>"

item[3]="<p><b>&quot;Brenner crafts a saga that is part family memoir, part psychological thriller and riveting overview of the U.S. apple-growing industry.... A rich and masterful memoir.&quot;</b><br> &mdash; Kirkus Reviews, starred review</p>"

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()",9000)
}
window.onload=changeItem




