// JavaScript Document

/*
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]='The course material was very good. It was clear, easy to follow and you could easily go back to clarify things.';
item[1]='&quot;I&#8217;m helping an awesome lady who has raised 30 foster kids stay in her home of 20 years. ...She&#8217;s happy and I&#8217;m happy!&quot;';
item[2]='&quot;It gave me insights on entering trades, risk management, exit strategies, or setting up targets. My instructor broke it down into very simple language, answered questions and was very patient. He was excellent.&quot;';
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("QuoteBox").innerHTML=item[current]
	if(document.all){
		div1.innerHTML=item[current];
	}
}
if (current==2){
	current=0;
}else{
	current++;
	setTimeout("changeItem()",7000);
}
window.onload=changeItem;
//-->
