/*
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]="<a href='victim1.shtml'><img src='/images/abilene_woman.jpg' border='0' width='190'></a>"
item[1]="<a href='victim2.shtml'><img src='/images/banker.jpg' border='0' width='190'></a>"
item[2]="<a href='victim3.shtml'><img src='/images/mrs_smith.jpg' border='0' width='190'></a>"
item[3]="<a href='victim4.shtml'><img src='/images/killeen_man.jpg' border='0' width='190'></a>"
item[4]="<a href='victim5.shtml'><img src='/images/houston_police_officer.jpg' border='0' width='190'></a>"
item[5]="<a href='victim6.shtml'><img src='/images/houston_vet.jpg' border='0' width='190'></a>"

var itemCaption=new Array()
itemCaption[0]="\"I was horrified, because it always happens to somebody else. And then I got really angry.\""
itemCaption[1]="\"For this guy to just come in and manipulate what you’ve created over a lifetime was very upsetting.\""
itemCaption[2]="\"From what you’ve spent that went on my account, you’re living better than I am.\""
itemCaption[3]="\"I'm very skeptical about leaving any personal information about myself after what happened.\""
itemCaption[4]="\"I was looked at with a cautious eye and that was pretty devastating.\""
itemCaption[5]="\"I had no knowledge of where the money went.\""
var current=0
var currentCaption=0

var ns6=document.getElementById&&!document.all
function changeItem(){
if(document.layers){
document.pictbox.document.write(item[current])
document.pictbox.document.close()
document.pictboxcaption.document.write(itemCaption[currentCaption])
document.pictboxcaption.document.close()
}
if(ns6)document.getElementById("pictbox").innerHTML=item[current]
{
if(document.all){
pictbox.innerHTML=item[current]
pictboxcaption.innerHTML=itemCaption[currentCaption]
}
}
if (current==5) {current=0; currentCaption=0;}
else {current++; currentCaption++;}
setTimeout("changeItem()",5000)
}
window.onload=changeItem
//-->