// 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]='<div><img src="images/Student_AndrewH.jpg" width="100" height="100" class="StudentPic" /><div class="Quote">&quot;The course material was very good. It was clear, easy to follow and you could easily go back to clarify things.&quot;*<br /><br /><strong>Andrew H<br />Houston, TX</strong></div></div>'
item[1]='<div><img src="images/Student_DawnP.jpg" width="100" height="100" class="StudentPic" /><div class="Quote">&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;*<br /><br /><strong>Dawn P<br />Clinton, WA</strong></div></div>'
item[2]='<div><img src="images/Student_FredH.jpg" width="100" height="100" class="StudentPic" /><div class="Quote">&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;*<br /><br /><strong>Fred H<br />Detroit, MI</strong></div></div>'
/*item[3]='<div><img src="images/Student_JohnV.jpg" width="100" height="100" class="StudentPic" /><div  class="Quote">&quot;...an incredible experience... I also turned a single family residence into a duplex and increased the cash flow from $75/month to $700[/month] ...pretty cool ...Special thanks to Rich Dad for changing our lives.&quot;*<br /><br /><strong>John V<br />Prescott Valley, AZ</strong></div></div>'*/
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==2) current=0
else current++
setTimeout("changeItem()",7000)
}
window.onload=changeItem
//-->
