$(document).ready(function () {
	// slideshow erstellen
	var sl = new SlideShow(3000);
	// und starten
	sl.start();

	$("#startquest").click(function () {
		window.location.href='043_interview.php?_Q=0';
	});

	$("#nextquest").click(function () {
//		window.location.href='043_interview.php?_Q=1';
		$("#form1").submit();
	});

	$("#nextquest2").click(function () {
//		window.location.href='043_interview.php?_Q=2';
		$("#form1").submit();
	});

	$("#nextquest3").click(function () {
//		window.location.href='043_interview.php?_Q=3';
		$("#form1").submit();
	});
});