function makeArray(n, width, height) {
this.length = n;
this.width = width;
this.height = height;
this.doRandom = doRandomImage;
for (var i=1; i<=n; i++) {
this[i] = ""; 
}
return this;
}
function doRandomImage() {
var i = Math.floor(this.length * Math.random() + 1);
document.write("<a href=\"discography.asp\"><IMG SRC="+this[i]+" WIDTH="+this.width+" HEIGHT="+this.height+" BORDER=0></a>");
}
image = new makeArray(2, 430, 342);
image[1]="images/homepage/solo.gif";
image[2]="images/homepage/strings.gif";
function random() {
image.doRandom();
}

