<!--

var core = 0

function StringArray (n) {
  this.length = n;
  for (var i =1; i <= n; i++) {
    this[i] = ' '

  }
}

image = new StringArray(3)
image[0] = 'http://raebear.net/img1/magenta.css'
image[1] = 'http://raebear.net/img1/green.css'
image[2] = 'http://raebear.net/img1/liteblue.css'

var imgnum = 0;

function ranimage() {
  core = Math.round(Math.random() * (image.length-1)+0);
  imgnum=image.length;
  return(image[core]);
}

var writestring = "<link href='" +ranimage()+ "' rel='stylesheet' type='text/css'>";
/*alert (writestring)*/
document.write(writestring);

//-->