var img1 = "pictures/picture01.jpg"
var img2 = "pictures/picture02.jpg"
var img3 = "pictures/picture03.jpg"
var img4 = "pictures/picture04.jpg"
var img5 = "pictures/picture05.jpg"
var img6 = "pictures/picture06.jpg"
var img7 = "pictures/picture07.jpg"
var img8 = "pictures/picture08.jpg"
var img9 = "pictures/picture09.jpg"
var img10 = "pictures/picture10.jpg"
var img11 = "pictures/picture11.jpg"
var img12 = "pictures/picture12.jpg"
var img13 = "pictures/picture13.jpg"


var randomize = Math.round(Math.random()*13)
if (randomize == 1){
newimg = img1
}else if (randomize == 2){
newimg = img2
}else if (randomize ==3){
newimg = img3
}else if (randomize ==4){
newimg = img4
}else if (randomize ==5){
newimg = img5
}else if (randomize ==6){
newimg = img6
}else if (randomize ==7){
newimg = img7
}else if (randomize ==8){
newimg = img8
}else if (randomize ==9){
newimg = img9
}else if (randomize ==10){
newimg = img10
}else if (randomize ==11){
newimg = img11
}else if (randomize ==12){
newimg = img12
}else{
newimg = img13
}
document.write('<IMG SRC="'+newimg+'" WIDTH="180" HEIGHT="130" BORDER="0" ALIGN="right">')
