    var i = 0
    var x = 0
           
var imgCaption=new Array(3)
     imgCaption[0]="&quot;</b>Excellent software made over 100 pips in todays session and cannot wait to do it all again tomorrow!<b>&quot;  S R Miami USA";
     imgCaption[1]="&quot;</b>FxMoneyMap is easy to use and ideal for quick trades during the day!<b>&quot;  Z Farooq Ohio USA";
     imgCaption[2]="&quot;</b>I have learnt a lot from the online forex community. Thanks.<b>&quot;  P F London UK";
     imgCaption[3]="&quot;</b>The knowldge that I have gained from the online forex community has dramatically improved my forex trading further<b>&quot;  P F London UK";
function imgAndCaption()
{
    var getCaption = imgCaption[0]+""
    document.getElementById('boldStuff').innerHTML = getCaption;
    	
	setTimeout('rotateGallery()',8000) 
}

function rotateGallery()
{

NextImage();
setTimeout('rotateGallery()',8000) 
}

function changeText(){
  //   i=i+1
     var getCaption = imgCaption[i]+""
	document.getElementById('boldStuff').innerHTML = getCaption;

}

function changeImage()
{
//x++;
changeText();
}

function NextImage()
{
if (i<3 && x<3) 
{
i=i+1;
x=x+1;
changeText(i);
}
else
{
i=0;
x=0;
changeText(i);
}
}
