
function RotateImage()
{
	ran_num = eval(ran_num + 1);
	if (ran_num >= BannerImgs.length) ran_num = 0;
	if (ran_num == -1) ran_num = 0;
	
	if (document.getElementById && document.createTextNode) { 
	  //var the_div = document.getElementById("BannerDiv");
	  var the_div1 = document.getElementById("BannerTopDiv");
	  document.getElementById("BannerContainer").style.backgroundImage="url(" + BannerImgs[ran_num]+ ")";
	  var LinkTarget = '';
	  
	  //var the_HTML = "<img src=\""+BannerImgs[ran_num]+"\" class=\"BannerImage\" alt=\""+BannerImgsText1[ran_num]+"\" />";
	  //the_div.innerHTML = the_HTML;
	 
		if (ShowSpeakerInfo == true)
		{
			if (BannerImgsLinkTargets[ran_num] == 'True') {
				LinkTarget = " target='_blank'";
			}
			else {
				LinkTarget = "";
			}

			// CHANGE BANNER TOP TEXT
			var the_Top_HTML = "<table align=\"right\" cellpadding=\"3\" cellspacing=\"0\" border=\"0\"> ";
			the_Top_HTML = the_Top_HTML + "<tr><td align=\"right\" class=\"TopText\" valign=\"top\">";
			if (BannerImgsLinks[ran_num] != '')
			{
				the_Top_HTML = the_Top_HTML + "<a rel=\"nofollow\" href='" + BannerImgsLinks[ran_num] + "' " + LinkTarget + ">" + BannerImgsText1[ran_num] + "</a>";	
			}
			else
			{
				the_Top_HTML = the_Top_HTML + BannerImgsText1[ran_num];
			}
			
			if (BannerImgsText2[ran_num] != '')
			{
				the_Top_HTML = the_Top_HTML + ",<br /> " + BannerImgsText2[ran_num];
			}
			the_Top_HTML = the_Top_HTML + "</td>"
			if (BannerImgsLinks[ran_num] != '')
			{
				the_Top_HTML = the_Top_HTML + "<td valign=\"top\" class=\"TopText\"><a rel=\"nofollow\" href='" + BannerImgsLinks[ran_num] + "' " + LinkTarget + "><img src='/images/IconArrowGold.gif' border='0' /></a></td>";	
			}			
			the_Top_HTML = the_Top_HTML + "</tr></table>";
			the_div1.innerHTML = the_Top_HTML;
		}
	}
	
	if (RotationMode == 'auto')
	{
		setTimeout('RotateImage()',5000);
	}
	//return false;
}

