if (HTMLAnchorElement)
{
if (!HTMLAnchorElement.prototype.click) {
  HTMLAnchorElement.prototype.click = function() {
    var ev = document.createEvent('MouseEvents');
    ev.initEvent('click',true,true);
    if (this.dispatchEvent(ev) !== false) {
      //safari will have already done this, but I'm not sniffing safari
      //just in case they might in the future fix it; I figure it's better
      //to trigger the action twice than risk not triggering it at all
      document.location.href = this.href;
    }
  }
} 

setTimeout(function()
					{

	var ui1 = 	document.getElementById('stripTransmitter0');
	if (ui1)
	{
	var As1 = ui1.getElementsByTagName('a');
	
	setInterval(function()
	{
		for (var i = 0; i < As1.length; i++)
		{
			if (As1[i].className == "current")
			{
				if (i == As1.length-1) 
				{
					As1[0].click();
					break;
				}
				As1[i+1].click();
				break;
			}
			
		}
	

	}, 5000);


	}


					}, 2000);

}