		function iniKakekko(){
			document.getElementById("cal_T2").style.display = "none";
			var aAry = new Array();
			aAry = document.getElementsByTagName("a");
			for( var i = 0; i < aAry.length; i++ ){
				if( aAry[ i ].className == "cal_M1" ){
					aAry[ i ].removeAttribute("href");
					aAry[ i ].style.cursor = "pointer";
					aAry[ i ].onmouseover = function( e ){
						this.style.textDecoration = "underline";
					}
					aAry[ i ].onmouseout = function( e ){
						this.style.textDecoration = "none";
					}
					aAry[ i ].onclick = function(){
						document.getElementById("cal_T1").style.display = "block";
						document.getElementById("cal_T2").style.display = "none";
					}
				}else if( aAry[ i ].className == "cal_M2" ){
					aAry[ i ].removeAttribute("href");
					aAry[ i ].style.cursor = "pointer";
					aAry[ i ].onmouseover = function( e ){
						this.style.textDecoration = "underline";
					}
					aAry[ i ].onmouseout = function( e ){
						this.style.textDecoration = "none";
					}
					aAry[ i ].onclick = function(){
						document.getElementById("cal_T1").style.display = "none";
						document.getElementById("cal_T2").style.display = "block";
					}
				}else{
				
				}
			}
		}
		window.onload = function(){
			iniKakekko();
		}

