// JavaScript Document

function revmenu(xcx,cxc){
	pty=document.getElementById(xcx);
	pty.style.visibility="visible";
	xbv=document.getElementById(cxc);
	xbv.style.color="orange";
}

function hidemenu(xcx,cxc){
	pty=document.getElementById(xcx);
	pty.style.visibility="hidden";
	xbv=document.getElementById(cxc);
	xbv.style.color="red";

}

function dimg(tnt){
	xct=Math.ceil((100 * Math.random())/20);
    document.write("<img src=\"../bimages/" + tnt + "/" + xct + ".jpg\" width=\"216\" height=\"106\" class=pframe>");
		 
}