/* JS-Funktionen */


//$(init);

var config = new Array();
config ['refreshSpeed'] = 1000;

function slideShow (main, year, page, refreshSpeed) {
	if (refreshSpeed ==0) return;
	config['refreshSpeed'] = refreshSpeed;
	window.setTimeout("pageforward('index.php?main="+main+"&year="+year+"&page="+page+"&refresh="+config['refreshSpeed']+"')", config['refreshSpeed']);
}

function pageforward (url) {
	window.location.replace(url);
}
