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 - 115) + "px";
		wmtt.style.top 	= (y - 55) + "px";
	}
}

function showWMTT(id) {
	wmtt = document.getElementById(id);
	wmtt.style.display = "block"
}

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



/* 

==================================================
========== MOOFX-TRIGGER ========================
==================================================*/

var navigationHeight;


	//	navigationHeight = new fx.Height('navigation', {duration: 800});
	//	navigationOpacity = new fx.Opacity('navigation', {duration: 800});
		

function imgtoggle(obj){ 
	
	if(obj.className=="open"){ 
		obj.className="close";
		obj.src="http://www.stz-unternehmensentwicklung.de/system/images/navi-close.gif"; 
	}else{ 
		obj.className="open";
		obj.src="http://www.stz-unternehmensentwicklung.de/system/images/navi-open.gif"; 
	}       
}

function init(){
		
		navigationHeight.toggle(); 
		navigationOpacity.toggle();

}