//Bestimmt Mauspos
function updateMausPosition(e) {
	varPicDiv = document.getElementById('picDiv');
	x = (document.all) ? window.event.x + document.body.scrollLeft : e.pageX;
	y = (document.all) ? window.event.y + document.body.scrollTop  : e.pageY;
	if (varPicDiv != null) {
		varPicDiv.style.left = (x + 30) + "px";
		varPicDiv.style.top 	= (y - 100) + "px";
	}
}
document.onmousemove = updateMausPosition;

//Zeigt das Produktfoto anhand der Mausposition in einem Layer an
function picDivShow(imgPath) {
	varPicDivImg = document.getElementById('picDivImg');
	varPicDivImg.src = imgPath;
	varPicDiv = document.getElementById('picDiv');
	varPicDiv.style.display = "";
}
//Versteckt das Produktfoto-Layer wieder
function picDivHide() {
	varPicDiv = document.getElementById('picDiv');
	varPicDivImg.src = 'images/ffv/picload.gif';
	varPicDiv.style.display = "none";
}
