function RotateTower()
{
   images = new Array();
   urls = new Array();

   images[0] = "../images/towers/budredhead.jpg";
   images[1] = "../images/towers/budredhead.jpg";
   images[2] = "../images/towers/caster160x600.jpg";
   images[3] = "../images/towers/emeraldcityconfidential_alternate.jpg";
   images[4] = "../images/towers/eschalonbook1.png";
   images[5] = "../images/towers/grapplinghook.jpg";
   images[6] = "../images/towers/lux.gif";
   images[7] = "../images/towers/madskillsmotocross160x600.jpg";
   images[8] = "../images/towers/minioneracing.png";
   images[9] = "../images/towers/plantsvszombies.jpg";
   images[10] = "../images/towers/ricochetinfinity.jpg";
   images[11] = "../images/towers/ricochetlostworlds.jpg";
   images[12] = "../images/towers/stardefender4.jpg";
   images[13] = "../images/towers/zuma.jpg";
   images[14] = "../images/towers/kaptainbrawe.jpg";

   urls[0] = "Other/budredhead.htm";
   urls[1] = "Other/budredhead.htm";
   urls[2] = "Other/caster.htm";
   urls[3] = "Other/emeraldcityconfidential.htm";
   urls[4] = "Other/eschalonbook1.htm";
   urls[5] = "Other/grapplinghook.htm";
   urls[6] = "Other/luxdeluxe.htm";
   urls[7] = "Other/madskillsmotocross.htm";
   urls[8] = "Other/minioneracing.htm";
   urls[9] = "Other/plantsvszombies.htm";
   urls[10] = "Other/ricochetinfinity.htm";
   urls[11] = "Other/ricochetlostworlds.htm";
   urls[12] = "Other/stardefender4.htm";
   urls[13] = "Other/zuma.htm";
   urls[14] = "Other/kaptainbrawe1.htm";

   count = 15;

   index = Math.floor(Math.random() *count);

   document.writeln("<a href=\""+urls[index]+"\"><img border=0 src="+images[index]+"></a>");
}

