
wmtt = null;
document.onmousemove = updateWMTT;

function updateWMTT(e) {
	var scrTop = (document.documentElement && document.documentElement.scrollTop) ? document.documentElement.scrollTop : document.body.scrollTop;
	var scrLeft = (document.documentElement && document.documentElement.scrollLeft) ? document.documentElement.scrollLeft : document.body.scrollLeft;
	x = (document.all) ? window.event.x + scrLeft : e.pageX;
	y = (document.all) ? window.event.y + scrTop : e.pageY;
	if (wmtt != null) {
		wmtt.style.left = (x - 110) + "px";
		wmtt.style.top 	= (y - 110) + "px";
	}
}

function hide_info() {
	wmtt.style.display = "none";
}


function show_ref_img(img){
	document.getElementById('big_img').src = '/layout/images/loading_big.gif';
	document.getElementById('big_img').src = 'http://images.timm4.de/tn.php?w=420&image='+img;
}
function show_info(info_img) {
	wmtt = document.getElementById('infobox');
	wmtt.style.display = "block";
	document.getElementById('info_stone_img').src = '/layout/images/loading_big.gif';
	document.getElementById('info_stone_img').src = 'http://images.timm4.de/tn.php?w=100&image=http://www.juramarble.com/'+info_img;
}

function big_img(image){
	window.open("/include/big_img.php?image="+image+"",'Image','width=500,height=500');
}