// JavaScript Document
function On_Show(M,N){
	var Show_Name=document.getElementsByName("Menu_"+M);
	var Show_Content=document.getElementsByName("Content_"+M);	
	for(var i=0;i<Show_Name.length;i++){
		if(i==N){
			Show_Name[i].style.background="url(Images/Bg/lable"+M+"_Over.jpg)";
			Show_Content[i].style.display="";
		}else{
			Show_Name[i].style.background="url(Images/Bg/lable"+M+"_Out.jpg)";
			Show_Content[i].style.display="none";
		}
	}
}
function On_BgChange(Id,N){
	if(N==1){
		Id.background="Images/Bg/alink.jpg";
	}else{
		Id.background="Images/Bg/hover.jpg";
	}
}