﻿/*
	plaatjes random wisselen op index.htm (home)
*/
<!--
function randimg() { } ; r = new randimg() ; n = 0

//-------------Database----------
r[n++]= '<img src="img/slideshow-home/foto-home-11.jpg" width="153" height="196" alt="1">'
r[n++]= '<img src="img/slideshow-home/foto-home-21.jpg" width="153" height="196" alt="2">'
r[n++]= '<img src="img/slideshow-home/foto-home-31.jpg" width="153" height="196" alt="3">'
r[n++]= '<img src="img/slideshow-home/foto-home-151.jpg" width="153" height="196" alt="4">'
r[n++]= '<img src="img/slideshow-home/foto-home-141.jpg" width="153" height="196" alt="5">'
r[n++]= '<img src="img/slideshow-home/foto-home-121.jpg" width="153" height="196" alt="6">'
//----------------------

i=Math.floor(Math.random() * n) ; 
document.write( r[i] )
//-->