// find out if ie runs in quirks mode
//
var mouseleft = 0;
var mousetop = 0;
var mouseid = 0;

function mouse_pos(e) {

	if(!e) e = window.event;

	var body = (window.document.compatMode && window.document.compatMode == "CSS1Compat") ? 

	window.document.documentElement : window.document.body;

	return {

	// Position im Dokument

	top: e.pageY ? e.pageY : e.clientY + body.scrollTop - body.clientTop,

	left: e.pageX ? e.pageX : e.clientX + body.scrollLeft  - body.clientLeft

	};

}

function showMousePos(e){

    var p = mouse_pos(e);
    
    mousetop = p['top']+15;
    mouseleft = p['left']+15;
    document.getElementById("spielinfo"+mouseid).style.left = mouseleft+"px";
    document.getElementById("spielinfo"+mouseid).style.top = mousetop+"px";
}



function jsspielinfo(id){
  mouseid = id;
  window.document.onmousemove = showMousePos;
  document.getElementById("spielinfo"+id).style.display = 'block';

}
function jsspielinfoout(id){
  window.document.onmousemove = null;
  document.getElementById("spielinfo"+id).style.display = 'none';

}
function spielswtich(id){
  
  document.getElementById("detail1").style.display = 'none';
  document.getElementById("detail2").style.display = 'none';
  document.getElementById("detail3").style.display = 'none';
  document.getElementById("detail4").style.display = 'none';
  document.getElementById("detail5").style.display = 'none';
  document.getElementById("class1").className = 'spielnavi';
  document.getElementById("class2").className = 'spielnavi';
  document.getElementById("class3").className = 'spielnavi';
  document.getElementById("class4").className = 'spielnavi';
  document.getElementById("class5").className = 'spielnavi';
  
  document.getElementById("detail"+id).style.display = 'block';
  document.getElementById("class"+id).className = 'spielnavi2';
  
}

function defpageswitch(id){
  
  document.getElementById("detail1").style.display = 'none';
  document.getElementById("detail2").style.display = 'none';
  document.getElementById("class1").className = 'spielnavi';
  document.getElementById("class2").className = 'spielnavi';
  
  document.getElementById("detail"+id).style.display = 'block';
  document.getElementById("class"+id).className = 'spielnavi2';
  
}
