// JavaScript Document
var ads = new Array();



ads[0] = '<img src="images/forex_header.jpg" width="700" height="200" usemap="#forex" border=0 alt="Trade forex, spot gold and silver at fxuniversal.com"/><map name="forex" id="forex"><area shape=rect coords="16,150,144,178" href="trade/spot_metals.html" title="Try a Free Practice Account"  alt="Try a Practice Account" /><area shape=rect coords="162,149,337,178" href="trade/open_an_account.html" title="Open a Live Account"  alt="Forex Demo Account"/><area shape=rect coords="622,181,642,199" href="javascript:rotateback();" title="Back"  alt="Back"/><area shape=rect coords="642,181,658,199" href="javascript:pausebanner();" title="Pause" alt="Pause"/><area shape=rect coords="658,181,678,199" href="javascript:rotateforward();" title="Forward"  alt="Forward"/></map>';



ads[1] = '<img src="images/forex_header1.jpg" width="700" height="200" usemap="#forex1" border=0 alt="World Class Online Forex Trading"/><map name="forex1" id="forex"><area shape=rect coords="16,155,181,183" href="learn/free_practice_account.html" /><area shape=rect coords="196,155,371,184" href="trade/open_an_account.html"/><area shape=rect coords="622,181,642,199" href="javascript:rotateback();" title="Back"  alt="Back"/><area shape=rect coords="642,181,658,199" href="javascript:pausebanner();" title="Pause" alt="Pause"/><area shape=rect coords="658,181,678,199" href="javascript:rotateforward();" title="Forward"  alt="Forward"/></map>';



ads[2] = '<img src="images/forex_header2.jpg" width="700" height="200" usemap="#forex2" border=0 alt="Trade Spot Gold and Silver"/><map name="forex2" id="forex"><area shape=rect coords="23,154,148,183" href="trade/spot_metals.html"/><area shape=rect coords="183,155,358,184" href="trade/open_an_account.html"/><area shape=rect coords="622,181,642,199" href="javascript:rotateback();" title="Back"  alt="Back"/><area shape=rect coords="642,181,658,199" href="javascript:pausebanner();" title="Pause" alt="Pause"/><area shape=rect coords="658,181,678,199" href="javascript:rotateforward();" title="Forward"  alt="Forward"/></map>';



<!--ads[3] = '<img src="images/forex_header3.jpg" width="700" height="200" usemap="#forex3" border=0 alt="Forex signals and analysis"/><map name="forex3" id="forex"><area shape=rect coords="361,154,536,183" href="trade/open_an_account.html"/><area shape=rect coords="236,155,340,184" href="signals/index.html"/><area shape=rect coords="622,181,642,199" href="javascript:rotateback();" title="Back"  alt="Back"/><area shape=rect coords="642,181,658,199" href="javascript:pausebanner();" title="Pause" alt="Pause"/><area shape=rect coords="658,181,678,199" href="javascript:rotateforward();" title="Forward"  alt="Forward"/></map>';-->



ads[4] = '<img src="images/forex_header4.jpg" width="700" height="200" usemap="#forex4" border=0 alt="Deposit Bonus"/><map name="forex4" id="forex"><area shape=rect coords="182,155,357,184" href="trade/open_an_account.html" /><area shape=rect coords="33,154,161,183" href="deposit_bonus.html"/><area shape=rect coords="622,181,642,199" href="javascript:rotateback();" title="Back"  alt="Back"/><area shape=rect coords="642,181,658,199" href="javascript:pausebanner();" title="Pause" alt="Pause"/><area shape=rect coords="658,181,678,199" href="javascript:rotateforward();" title="Forward"  alt="Forward"/></map>';



var pause = 0;



function rotatenext()

{	

	if (counter != null)

	{

		clearTimeout(counter);

	}

	

  var tbl=document.getElementById("adv");

  

  if (position == 0 || position == 1 || position == 2 || position == 3)

	{

		position++;

		tbl.innerHTML = ads[position];		

  }   		

	else

	{

		position = 0;

		tbl.innerHTML = ads[position];

	}		

	

	counter = setTimeout('rotatenext()',10000);

	

	pause = 0;		

}



function rotateforward()

{

	clearTimeout(counter);

	

	var tbl=document.getElementById("adv");	

		

	if (position == 0 || position == 1 || position == 2 || position == 3)

	{


		position++;

		tbl.innerHTML = ads[position];		

  }   

	else

  {

  	position = 0;

  	tbl.innerHTML = ads[position];  	

  }

  

	counter = setTimeout('rotatenext()',10000);

	

	pause = 0;

}



function rotateback()

{

	clearTimeout(counter);

	

	var tbl=document.getElementById("adv");	

		

	if (position == 1 || position == 2 || position == 3 || position == 4)

	{

		position--;

		tbl.innerHTML = ads[position];		

  }   

	else

  {

  	position = 4;

  	tbl.innerHTML = ads[position];  	

  } 

  

	counter = setTimeout('rotatenext()',10000);

	

	pause = 0;

}



function pausebanner()

{	

	if (pause == 0)

	{			

		clearTimeout(counter);

		pause = 1;	

	}	

	else

	{			

		counter = setTimeout('rotatenext()',1);

		pause = 0;

	}

}