function init_team_map () {
	var width = (document.body.offsetWidth - 674) / 2 + document.body.scrollLeft;
	width += 158;
	
	
	// set the layers
	document.getElementById("marx").style.left = width + 80 + "px";
	document.getElementById("severin").style.left = width + 140 + "px";
	document.getElementById("antoscheck").style.left = width + 40 + "px";
	
	var go_left = 0;
	go_left = (navigator.appName.substring(0,9)=="Microsoft") ?
		265 : 320;
	
	document.getElementById("marx_content").style.left = width + go_left + "px";
	document.getElementById("severin_content").style.left = width + go_left + "px";
	document.getElementById("antoscheck_content").style.left = width + go_left + "px";
}

function display_partner (id) {
	document.getElementById("marx_content").style.display = "none";
	document.getElementById("severin_content").style.display = "none";
	document.getElementById("antoscheck_content").style.display = "none";
	
	document.getElementById(id).style.display = "block";
}
