function ChanageMenu(total,tid,id)
{
	which = eval("Show_"+ tid +"_" + id);
	if (which.style.display == "none")
	{
		var i = 1
		while(i<total+1){
			eval("Show_"+ tid +"_"+ i +".style.display=\"none\";");
			//eval("Menu_"+ tid +"_"+ id +".style.color=\"#FFFFFF\";");
			i++;
		}
		eval("Show_"+ tid +"_"+ id +".style.display=\"\";");
	}
}
