var SwapID=0;
var PauseTime=15*1000;
var Timer1;
function swap(Obj)
{
 var st = document.getElementsByName('lt2');
 var j;
 if(st.length>0)
 {
  for(j=0; j<st.length; j++)
  {
   if(st[j]==Obj)
   {
    lt2[j].style.display='';
    mt[j].style.color='#c30029'
   } 
   else 
   {
    lt2[j].style.display='none';
    mt[j].style.color='#000000'
    mt[j].style.cursor='pointer'
   }
  }
 }
}

function AutoSwap() 
{
 //StopSwap();Swap(lt[SwapID])
 for (i=0;i<3;i++)
 Swap(lt[i]);
 //SwapID+=1;
 //if (SwapID==3) { SwapID=1; }
 Timer1=setTimeout("AutoSwap()",PauseTime);
}
 
function StopSwap() 
{
 clearTimeout(Timer1);
}
