// JavaScript Document
function randomimg(){
  var img=new Array()
  //specify random images below. You can have as many as you wish
  img[1]="http://www.2vin.nl/images/fade2/fade50.jpg"
  img[2]="http://www.2vin.nl/images/fade2/fade51.jpg"
  img[3]="http://www.2vin.nl/images/fade2/fade52.jpg"
  img[4]="http://www.2vin.nl/images/fade2/fade53.jpg"
  img[5]="http://www.2vin.nl/images/fade2/fade54.jpg"
  img[6]="http://www.2vin.nl/images/fade2/fade55.jpg"
  img[7]="http://www.2vin.nl/images/fade2/fade56.jpg"
  img[8]="http://www.2vin.nl/images/fade2/fade57.jpg"
  img[9]="http://www.2vin.nl/images/fade2/fade58.jpg"
  img[10]="http://www.2vin.nl/images/fade2/fade59.jpg"
  img[11]="http://www.2vin.nl/images/fade2/fade60.jpg"
  var nr=Math.floor(Math.random()*img.length)

  if (nr==0)
     nr=1
     document.write('<img src="'+img[nr]+'"')
}

randomimg();