var step=1
var whichimage=1

function slideit(){
  if (!document.images)  return;
  document.images.slide.src=eval("image"+step+".src");
  whichimage=step;
  if (step<6)
    step++;
  else
    step=1;
  setTimeout("slideit()",6500)
}

slideit();

function slidelink(){
  if (whichimage==1)
    window.location="#";
  else if (whichimage==2)
    window.location="/internet/";
  else if (whichimage==3)
    window.location="/tvradio/";
  else if (whichimage==4)
    window.location="l/cablesatellite/";
  else if (whichimage==5)
    window.location="/phones/";
  else if (whichimage==6)
    window.location="/mediaownership/";
}