// JavaScript Document
<!-- start function: slideshow -->
pics_top		= new Array("images/hot_01.jpg","images/hot_02.jpg","images/hot_03.jpg","images/hot_04.jpg","images/hot_05.jpg","images/hot_06.jpg","images/hot_07.jpg","images/hot_08.jpg"); // bilder oben hier rein
// pics_bottom		= new Array("images/hot_02.jpg","images/hot_04.jpg","images/hot_06.jpg","images/hot_08.jpg","images/hot_10.jpg"); // bilder unten hier rein

changeTime 	= 20; // sekunden

function slideshow_top() {
	setTimeout("slideshow_top()",changeTime*1000);
	document.bild_top.src=pics_top[Math.floor(Math.random()*pics_top.length)];
}
//function slideshow_bottom() {
//	setTimeout("slideshow_bottom()",changeTime*1000);
//	document.bild_bottom.src=pics_bottom[Math.floor(Math.random()*pics_bottom.length)];
//}
<!-- end function: slideshow -->
