// JavaScript Document

var links = new Array( 'unternehmen/staatsweingut.html', 'unternehmen/jacoby.html', 'unternehmen/lieler.html', 'unternehmen/hex.html', 'unternehmen/rothaus.html', 'unternehmen/faller.html', 'unternehmen/lasser.html', 'unternehmen/goufrais.html');
var images = new Array( 'img/01_staatsweingut.png', 'img/02_jacoby.jpg', 'img/03_lieler.jpg', 'img/04_hex.jpg', 'img/06_rothaus.jpg', 'img/07_faller.jpg' , 'img/08_lasser.jpg', 'img/10_goufrais.jpg' );
var namen = new Array( '01_staatsweingut', '02_jacoby', '03_lieler', '04_hex', '06_rothaus', '07_faller' , '08_lasser', '10_goufrais' );


var zahlen = new Array(0,1,2,3,4,5,6,7);

function zufall() {
 return (Math.random() - Math.random());
}

function lotto() {
 zahlen.sort(zufall);
}

lotto();

for (var i = 1; i < 9; i++) 
{
	var aktZahl = zahlen[i-1];
	var linknummer = "link0" + i;
	var bildnummer = "img0" + i;
	document.getElementById(linknummer).href = links[aktZahl];
	document.getElementById(bildnummer).src = images[aktZahl];
	document.getElementById(bildnummer).name = namen[aktZahl];
	document.getElementById(bildnummer).alt = namen[aktZahl];
}

function show(id_text, id_button)
{
	document.getElementById(id_text).style.display = 'block';
	document.getElementById(id_button).style.display = 'none';
}

function hide(id_text, id_button)
{
	document.getElementById(id_text).style.display = 'none';
	document.getElementById(id_button).style.display = 'block';
}
