/*
Author: Narayan Chand Thakur
Source: http://ncthakur.itgo.com/
This may be used freely as long as this message is intact.
*/

var item=new Array()
item[0]="<span class='quote'>Chronicle is a great program. I have a lot of bills to pay, but don't like to be bogged down by overly complex finance software. Chronicle is perfect for my needs.</span><span class='quote-author'> R.B.</span>"
item[1]="<span class='quote'>I love (and now depend) on this product.  My bank does not offer services to do all this program will do, and with the addition of the features in this edition I think this is a great price.</span><span class='quote-author'> C.S.</span>"
item[2]="<span class='quote'>Chronicle is great so I purchased it earlier today.  Your speedy support is encouraging and much appreciated.  What I like most is the simplicity of the product.</span><span class='quote-author'> S.B.</span>"
item[3]="<span class='quote'>I can't say enough good things about Chronicle ... Highly recommended.</span><span class='quote-author'> K.S.</span>"
item[4]="<span class='quote'>I feel more secure and at ease owning this software.</span><span class='quote-author'> M.H.</span>"
item[5]="<span class='quote'>I love this. I've been living off of stickies for years because nothing else was worth it.</span><span class='quote-author'> J.C.</span>"
item[6]="<span class='quote'>Chronicle ... is one of my favorite and most practical, useful programs that I have come across in a long time.</span><span class='quote-author'> C.L.</span>"
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()",10000)
}
window.onload=changeItem