<!--
//copyright 2002 Grip MultiMedia

//----- START SETTINGS ---------------------------------------------------------------------

// db is an array of link objects. Each link object consists of 2 things: an URL to the site
// the banner is linking to and the URL of the banner itself.


var db = new Array();

db[0 ] = new link("", "<img src=fotohome/konijn0.jpg width=948 height=148 border=0>")
db[1 ] = new link("", "<img src=fotohome/konijn1.jpg width=948 height=148 border=0>")
db[2 ] = new link("", "<img src=fotohome/konijn2.jpg width=948 height=148 border=0>")
db[3 ] = new link("", "<img src=fotohome/konijn3.jpg width=948 height=148 border=0>")
db[4 ] = new link("", "<img src=fotohome/konijn4.jpg width=948 height=148 border=0>")
db[5 ] = new link("", "<img src=fotohome/konijn5.jpg width=948 height=148 border=0>")
db[6 ] = new link("", "<img src=fotohome/konijn6.jpg width=948 height=148 border=0>")


//----- END SETTINGS -----------------------------------------------------------------------


function link(where,title) {

	this.where = where;
	this.title = title;
	return this
}


function getRandomLink() {

	n = Math.floor(Math.random() * db.length);


	document.write(db[n].title);
}


//-->