var dimages=new Array();
var numImages=11;
var detid=new Array();
detid[0]="concert.php?id=52";
detid[1]="concert.php?id=3";
detid[2]="concert.php?id=4";
detid[3]="concert.php?id=27";
detid[4]="concert.php?id=42";
detid[5]="concert.php?id=54";
detid[6]="concert.php?id=22";
detid[7]="concert.php?id=34";
detid[8]="concert.php?id=35";
detid[9]="concert.php?id=1";
detid[10]="concert.php?id=16";
for (i=0; i<numImages; i++)
{
  dimages[i]=new Image();
  dimages[i].src="images/banner/"+(i+1)+".jpg";
}
var curImage=-1;
function swapPicture()
{
  if (document.images)
  {
    var nextImage=curImage+1;
    if (nextImage>=numImages)
      nextImage=0;
    if (dimages[nextImage] && dimages[nextImage].complete)
    {
      var target=0;
      if (document.images.banner)
        target=document.images.banner;
      if (document.all && document.getElementById("banner"))
        target=document.getElementById("banner");
		targetlink=document.getElementById("bannerlink");
      if (target)
      {
        target.src=dimages[nextImage].src;
		document.getElementById("bannerlink").href=detid[nextImage];
        //targetlink.setAttribute('href', detid[nextImage]);
        curImage=nextImage;
      }
      setTimeout("swapPicture()", 4000);
    }
    else
    {
      setTimeout("swapPicture()", 500);
    }
  }
}
 
setTimeout("swapPicture()", 4000);