var dimages=new Array();
var numImages=9;
var detid=new Array();
detid[0]="concert.php?id=57";
detid[1]="concert.php?id=6";
detid[2]="concert.php?id=47";
detid[3]="concert.php?id=13";
detid[4]="concert.php?id=7";
detid[5]="concert.php?id=48";
detid[6]="concert.php?id=15";
detid[7]="concert.php?id=49";
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);
