<!--
function random1() {
	var sources = new Array("b01.jpg","b02.jpg","b03.jpg","b04.jpg","b05.jpg","b06.jpg","b07.jpg","b08.jpg","b09.jpg");
	var index = Math.floor(Math.random()*9) ;
	if (document.images) overview1.src="../img/overview/"+sources[index];
	else document.overview1.src="../img/overview/"+sources[index];
}

function random2() {
	var sources = new Array("s01.jpg","s02.jpg","s03.jpg","s04.jpg","s05.jpg","s06.jpg","s07.jpg","s08.jpg","s09.jpg","s10.jpg");
	var index = Math.floor(Math.random()*10) ;
	if (document.images) overview2.src="../img/overview/"+sources[index];
	else document.overview2.src="../img/overview/"+sources[index];
}

function random3() {
	var sources = new Array("06.jpg","07.jpg","08.jpg","09.jpg","10.jpg","11.jpg");
	var index = Math.floor(Math.random()*6) ;
	if (document.images) overview3.src="../img/overview/"+sources[index];
	else document.overview3.src="../img/overview/"+sources[index];
}

function random4() {
	var sources = new Array("12.jpg","13.jpg","14.jpg","15.jpg","16.jpg","17.jpg");
	var index = Math.floor(Math.random()*6) ;
	if (document.images) overview4.src="../img/overview/"+sources[index];
	else document.overview4.src="../img/overview/"+sources[index];
}

function random5() {
	var sources = new Array("01.jpg","02.jpg","03.jpg","04.jpg","05.jpg","18.jpg");
	var index = Math.floor(Math.random()*6) ;
	if (document.images) overview5.src="../img/overview/"+sources[index];
	else document.overview5.src="../img/overview/"+sources[index];
}

//-->

