var timerLeft;
var timerRight;
var dtable = 1;

function scroll_left() {
	document.getElementById("scrollbox").scrollLeft+=1;
	timerLeft = setTimeout("scroll_left()", 1);
}

function scroll_right() {
	document.getElementById("scrollbox").scrollLeft-=1;
	timerRight = setTimeout("scroll_right()", 1);
}

function change_pic(name, pic) {
	document.getElementById("produkt-big-pic").src = './content/produkte/' + name + '/' + pic +'.jpg';
}

function show_table(id) {
	document.getElementById("dtable-" + dtable).style.display = 'none';
	document.getElementById("dtable-" + id).style.display = 'table';
	
	dtable = id;
}

