var delay=8000 //set delay between message change (in miliseconds)
var fcontent=new Array()
begintag='<font face="verdana" size=0>' //set opening tag, such as font declarations
fcontent[0]="A student of USC suffered for more than 8 years with Fibromyalgia, even to the point of walking with a cane for a few years. After only 3 days on the Hyssop extract her symptoms and pain were gone!"
fcontent[1]="The National Examiner (2/11/97) told how Hyssop saved diabetics' legs. Hyssop is a proven painkiller according to the prophets."
fcontent[2]="Prevention Magazine (200 Herbal Remedies) called Hyssop a Potential Anti- AIDS Weapon and recants how the biggest names in ancient medicine, Hippocrates and Galen, both used Hyssop against virus conditions. This is also reinforced by top-ranked institutions of higher learning such as Cornell University."
fcontent[3]="After seeing at least 10 doctors and trying virtually all types of different headache medicines I was still having the same migrane headaches. Thank God for my husband discovering the Hyssop and getting me some because now I have my life back!.... Lisa K, Chatsworth GA"
fcontent[4]="Since 1945 a pastor in Ohio was unable to do even simple household chores due to pain and arthritis. A year of taking very small amounts of Hyssop he is back to doing everything. He stated that he recently poured 2 yards of concrete."
fcontent[5]="A young lady in Chicago was being treated for MS for eight years. All the while she was in constant pain. After only three days on Hyssop her pain was gone. She has since married and is living an active normal life free of pain."
fcontent[6]="A young man from Hollywood battled with a cancerous condition for more than six years. He experienced severe headaches from a growth on the side of his head. Within a few weeks of using Hyssop his headaches were gone and he is rapidly returning to a normal life style, thanks to Hyssop!"
fcontent[7]="Are you currently suffering or know someone that is? Why not do what so many people have already done and see for yourself how Radient Health and Hyssop can lead you to a healthy and wealthy life."
closetag='</font>'

var fwidth=390 //set scroller width
var fheight=70 //set scroller height

///No need to edit below this line/////////////////

var ie4=document.all&&!document.getElementById
var ns4=document.layers
var DOM2=document.getElementById
var faderdelay=0
var index=0

if (DOM2)
faderdelay=2000

//function to change content
function changecontent(){
if (index>=fcontent.length)
index=0
if (DOM2){
document.getElementById("fscroller").style.color="rgb(255,255,255)"
document.getElementById("fscroller").innerHTML=begintag+fcontent[index]+closetag
colorfade()
}
else if (ie4)
document.all.fscroller.innerHTML=begintag+fcontent[index]+closetag
else if (ns4){
document.fscrollerns.document.fscrollerns_sub.document.write(begintag+fcontent[index]+closetag)
document.fscrollerns.document.fscrollerns_sub.document.close()
}

index++
setTimeout("changecontent()",delay+faderdelay)
}

// colorfade() partially by Marcio Galli for Netscape Communications.  ////////////

frame=20;
hex=255  // Initial color value.

function colorfade() {	         	
// 20 frames fading process
if(frame>0) {	
hex-=12; // increase color value
document.getElementById("fscroller").style.color="rgb("+hex+","+hex+","+hex+")"; // Set color value.
frame--;
setTimeout("colorfade()",20);	
}
else{
document.getElementById("fscroller").style.color="rgb(0,0,0)";
frame=20;
hex=255
}   
}

if (ie4||DOM2)
document.write('<div id="fscroller" style="border:0px solid black;width:'+fwidth+';height:'+fheight+';padding:2px"></div>')

window.onload=changecontent
