// (c)2007 hkatzenberger all rights reserved

home1 = "nav/bt_Home.png"
home1= new Image();
home2 = "nav/bt_Home_act.png"
home2= new Image();
arch1 = "nav/bt_archive.png"
arch1= new Image();
arch2 = "nav/bt_archive_act.png"
arch2= new Image();
cast1 = "nav/bt_cast.png"
cast1= new Image();
cast2 = "nav/bt_cast_act.png"
cast2= new Image();
stuf1 = "nav/bt_stuff.png"
stuf1= new Image();
stuf2 = "nav/bt_stuff_act.png"
stuf2= new Image();
faq1 = "nav/bt_faq.png"
faq1= new Image();
faq2 = "nav/bt_faq_act.png"
faq2= new Image()
foru1 = "nav/bt_forum.png"
foru1= new Image();
foru2 = "nav/bt_forum_act.png"
foru2= new Image();

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 + 20) + "px";
	}
}

function showWMTT(id) {
	wmtt = document.getElementById(id);
	wmtt.style.display = "block"
}

function hideWMTT() {
	wmtt.style.display = "none";
}

