var item=new Array();
item[0]="&#8220;Attend our free intro seminar and learn how to use technical analysis and option strategies that aim to profit regardless of market direction&#8230; <br> (Forex trading involves a substantial risk of loss).&#8221;";
item[1]="&#8220;…take the guesswork out of the stock market, attend our free seminar, register today, seating is limited…&#8221;";
item[2]="&#8220;...the stock market is a game, learn the rules before you play, take the time and educate yourself or the stock market will teach you a very expensive lesson...&#8221;";
item[3]="&#8220;...you will learn how to analyze a price chart, apply the appropriate strategy, manage your risk and identify price target points...&#8221;";
item[4]="&#8220;…our Graduates apply safe and simple techniques to trade in today's fast paced financial markets…&#8221;";
item[5]="&#8220;...our goal is to empower our Members with the knowledge required to become independent successful traders or investors…&#8221;";

var current=0;

function changeItem()
{
	document.getElementById("msg").innerHTML=item[current]

	if (current==5) 
		current=0;
	else 
		current++;

	setTimeout("changeItem()",5000)
}
changeItem();

