var Content = new Array(
		"fileadmin/template/emotions/l2_l_team.jpg",
		"fileadmin/template/emotions/l2_l_team2.jpg",
		"fileadmin/template/emotions/l2_l_isdek.jpg",
		"fileadmin/template/emotions/l2_l_isdek2.jpg",
		"fileadmin/template/emotions/l2_l_anja.jpg",
		"fileadmin/template/emotions/l2_l_anja2.jpg",
		"fileadmin/template/emotions/l2_l_stefan.jpg",
		"fileadmin/template/emotions/l2_l_stefan2.jpg",
		"fileadmin/template/emotions/l2_l_michael.jpg",
		"fileadmin/template/emotions/l2_l_michael2.jpg",
		"fileadmin/template/emotions/l2_l_katharina.jpg",
		"fileadmin/template/emotions/l2_l_katharina2.jpg",
		"fileadmin/template/emotions/l2_l_martin.jpg",
		"fileadmin/template/emotions/l2_l_martin2.jpg"
);

window.onload = init();

function init() {
	// Laedt alle Bilder im Voraus
	var preload_pics = new Array();
	for(var i=0; i<Content.length; i++) {
		preload_pics[i] = new Image();
		preload_pics[i].src = Content[i];
	}
}

// Einblenden des jeweiligen Detail-Bilds
function showteam (name) {
	var detailbild1 = '<img src="fileadmin/template/emotions/l2_l_' + name + '.jpg" width="104" height="242" alt="Team1" />';
	var detailbild2 = '<img src="fileadmin/template/emotions/l2_l_' + name + '2.jpg" width="242" height="242" alt="Team2" />';
		
	if (document.getElementById('team1')) {
		document.getElementById('team1').innerHTML = detailbild1;
	}		
	if (document.getElementById('team2')) {
		document.getElementById('team2').innerHTML = detailbild2;
	}	
	
	// Navigation: Aktiv- und Inaktiv-Setzen
	document.getElementById(('team-'+name)).className = "menue3_a";
	document.getElementById('team-komplett').className = "menue";
}

// Wiederherstellung des Team-Bilds
function hideteam (name) {
	if (document.getElementById('team1')) {
		document.getElementById('team1').innerHTML = '<img src="fileadmin/template/emotions/l2_l_team.jpg" width="104" height="242" alt="Team" />';
	}	
	if (document.getElementById('team2')) {
		document.getElementById('team2').innerHTML = '<img src="fileadmin/template/emotions/l2_l_team2.jpg" width="242" height="242" alt="Team" />';
	}
	
	// Navigation: Aktiv- und Inaktiv-Setzen
	document.getElementById('team-' + name).className = "menue";
	document.getElementById('team-komplett').className = "menue3_a";
}




