pbild = null;
infotext = null;
document.onmousemove = updateProduct;

function updateProduct(e)
{
	if (document.all) {
		if (pbild != null) {
			pbild.style.marginLeft = (window.event.offsetX + 40) + "px";
			pbild.style.marginTop = (window.event.offsetY - 60) + "px";
		}
	} else {
		if (pbild != null) {
			pbild.style.left = (e.layerX + 40) + "px";
			pbild.style.top = (e.layerY - 20) + "px";
		}
	}
}

function showProduct(id)
{
	pbild = document.getElementById(id);
	pbild.style.display = "block"
}

function hideProduct()
{
	pbild.style.display = "none";
}

function showText(id)
{
	infotext = document.getElementById(id);
	infotext.style.display = "block"
}

function hideText()
{
	infotext.style.display = "none";
}