/*
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]="<b>&quot;The woman knows what she's doing.&quot;</b> &mdash; <i>New York Times</i>"

item[1]="<b>&quot;It's the little black book for the gray-is-the-new-blond set! At our  age we are evolved enough to understand that wrinkles don't  matter....But who needs 'em? Buy this book and <i>glow</i> old gracefully!&quot;</b> &mdash; Christie Brinkley"

item[2]="<b>&quot;Had I only known that all I needed to look younger was Charla's book, I could have saved a lot of money on plastic surgery!&quot;</b> &mdash; Joan Rivers"

item[3]="<b>&quot;Charla is a perfect American girl who knows how to help American women  look better, in a non-extreme-makeover sort of way, and not lose  themselves in the process. Bravo!&quot;</b> &mdash; Laura Mercier, makeup artist and creator, Laura Mercier Cosmetics"

item[4]="<b>&quot;I love my friends who are blind to my flaws, but I <i>need</i> my friends who tell me the brutal truth about errant eyebrow hairs and  too-short-for-my-age skirts. You don't have to take Charla's advice,  but you can't say no one told you how to look absolutely fabulous as  you age!&quot;</b> &mdash; Peggy Northrop, editor in chief, <i>More</i>"

item[5]="<b>&quot;Charla knows how to inspire people. This book is every girl's new best friend.&quot;</b> &mdash; Isaac Mizrahi"

item[6]="<b>&quot;Charla Krupp, a blonde who looks decidedly not-old. Whether mammalian age even pertains to beauties like Krupp I'm not sure; she seems to be on a another biological trip altogether.&quot;</b> &mdash; Virginia Heffernan, <i>New York Times</i>, July 20, 2008"

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==6) current=0
else current++
setTimeout("changeItem()",8000)
}
window.onload=changeItem




