// 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/fade/fade1.jpg"
  img[2]="http://www.2vin.nl/images/fade/fade2.jpg"
  img[3]="http://www.2vin.nl/images/fade/fade3.jpg"
  img[4]="http://www.2vin.nl/images/fade/fade4.jpg"
  img[5]="http://www.2vin.nl/images/fade/fade5.jpg"
  img[6]="http://www.2vin.nl/images/fade/fade6.jpg"
  img[7]="http://www.2vin.nl/images/fade/fade7.jpg"
  img[8]="http://www.2vin.nl/images/fade/fade8.jpg"
  img[9]="http://www.2vin.nl/images/fade/fade9.jpg"
  img[10]="http://www.2vin.nl/images/fade/fade10.jpg"
  img[11]="http://www.2vin.nl/images/fade/fade11.jpg"
  img[12]="http://www.2vin.nl/images/fade/fade12.jpg"
  img[13]="http://www.2vin.nl/images/fade/fade13.jpg"
  img[14]="http://www.2vin.nl/images/fade/fade14.jpg"
  img[15]="http://www.2vin.nl/images/fade/fade15.jpg"
  img[16]="http://www.2vin.nl/images/fade/fade16.jpg"
  img[17]="http://www.2vin.nl/images/fade/fade17.jpg"
  img[18]="http://www.2vin.nl/images/fade/fade18.jpg"
  var nr=Math.floor(Math.random()*img.length)

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

randomimg();