function mOv(src,target,color){
	hand(src);
	cor(src,color);
	if(target!=''){
	  showmenu(target);
	}
}

function mOu(src,target,color){
	cor(src,color);
	if(target!=''){
		hidemenu(target);
	}
}

function hand(src){
	src.style.cursor='hand';
}

function cor(src,cor){
	src.style.color=cor;
}

function bgc(src,cor){
	src.style.background=cor;
}

function showmenu(elmnt){
document.getElementById(elmnt).style.visibility="visible";
}

function hidemenu(elmnt){
document.getElementById(elmnt).style.visibility="hidden";
}

function d(page){
location.href=page;
}