<!--
// these functions are used for the right menu. (c) by Mg9H
// right menu over
function rmov (id) {
	document.getElementById (id).style.cursor = 'pointer';
	document.getElementById (id).style.backgroundColor = '#efe';
}
// right menu out
function rmot (id) {
	document.getElementById (id).style.backgroundColor = '#eef';
}

//the following functions are written by theirs creator: this script is (c) by Oktay Oeztueter 2002
// Comment from Kyo: This function changes the opacity when the item is hi-lighted

// left menu over
function lmov(a,id){
	i=a;i+=19;
	document.getElementById (id).style.letterSpacing='' + i/9 + 'px';
	document.getElementById (id).className = 'Mg9H_MENU_ROW_HOVER';
	if (i<90){setTimeout('lmov('+i+',\'' + id + '\')',1)}
}

// Comment from Kyo: This function change the opacity when the item is RETURNED from hi-lighting.
// left menu out
function lmot(a,id){
	i=a;i-=5;
	document.getElementById (id).style.letterSpacing='' + i/13 + 'px';
	document.getElementById (id).className = 'Mg9H_MENU_ROW';
	if (i>40){setTimeout('lmot('+i+',\'' + id + '\')',1)}
}

-->
