// This script orginally written by Alphamatrix for Alphagod.com.
// Feel free to use this code if you can figure it out
// for yourself.

var i=4;

Img=new Array(i);
Img[0]="index_mainphoto_01";
Img[1]="index_mainphoto_02";
Img[2]="index_mainphoto_03";
Img[3]="index_mainphoto_04";

Lnk = new Array(i);
Lnk[0]="";
Lnk[1]="";
Lnk[2]="";
Lnk[3]="";

Used = new Array(i);

function drawLinks() {
  do
    {
    var rndNum=Math.round(Math.random()*(i-1));
    } while(Used[rndNum]==1)
  Used[rndNum] = 1;
  return rndNum;
  }