function show(element){
		element.className += "hover";
	}
	function hide(element){
		element.className = element.className = "";
	}
	
	
	
	wmtt = null;



document.onmousemove = updateWMTT;



function updateWMTT(e) {

	x = (document.all) ? window.event.x + document.body.scrollLeft : e.pageX;

	y = (document.all) ? window.event.y + document.body.scrollTop  : e.pageY;

	if (wmtt != null) {

		wmtt.style.left = (x + 20) + "px";

		wmtt.style.top 	= (y - 60) + "px";

	}

}



function showWMTT(id) {

	wmtt = document.getElementById(id);

	wmtt.style.display = "block"

}



function hideWMTT() {

	wmtt.style.display = "none";

}


	
	
	
	/*
Warenkorb Function - send to basket
*/

function sendtobasket(prodname,prodid,prodprice,prodtax,prodlink)
		{
			// Bei bedarf in neuem Fenster oeffen:
			var winbasket;
			var left = (screen.availWidth/2) - (640/2);
			var top = (screen.availHeight/2) - (680/2);
			
			
			winbasket=open("dummy.html","basket","width=640,height=680,left="+left+",top="+top+",toolbar=no,status=no,scrollbars=yes,resizable=no,menubar=no,location=no,hotkeys=no,dependent=no");
			document.tobasket.target="basket"; // Immer dasselbe Zielfenster (Popup)
						
			//Werte aus Link in Hidden-Formularelement schreiben:
			document.tobasket.prodid.value=prodid;
			document.tobasket.prodname.value=prodname;
			document.tobasket.prodprice.value=prodprice;
			document.tobasket.prodtax.value=prodtax;
			document.tobasket.prodlink.value=prodlink;
			document.tobasket.view.value="addprod"; 	// Formular-Action zum Ausfuehren der Hinzufuegen-Funktion
			document.tobasket.action="http://www.yourpersonaltrainer.de/Basket/basket.php";
			document.tobasket.submit();					// Abschicken
		}
		
		

	
	
	