document.onmousemove = woistdiemaus;

function posDiv(){
document.getElementById("img_container").style.top=(posy-70)+"px";
document.getElementById("img_container").style.left=(posx+15)+"px";

}

var posy = 0;
document.onclick = function(){
}

function woistdiemaus(ereignis) {
var browser = navigator.appName;
if(browser == "Microsoft Internet Explorer"){
posy = window.event.clientY + document.documentElement.scrollTop;
}else{
posy = document.all ? window.event.clientY : ereignis.pageY;
posx = document.all ? window.event.clientX : ereignis.pageX;
}
posDiv();
}

function showImg(dasBild){
	document.getElementById("img_container").style.display= "block";
	document.getElementById("bigbild").src= dasBild.src.replace(/\/thumbs/,"");
	
}
function hideImg(){
	document.getElementById("img_container").style.display= "none";
	document.getElementById("bigbild").src= "/layout/images/indicator.gif";
}