//---------menu year---------------
function get(id,count,de){//-----for show all year----
	for (i=1;i<=count;i++){
		if (id==i){
			if(de=='Yes'){
				document.getElementById("li"+i).className='txt_header11';
			}
		}else{
			document.getElementById("li"+i).className='a:hover';
		}
	}
}

//---------menu month of year---------------
function getM(id,count){//-----for show all month----
	for (i=1;i<=count;i++){
		if (id==i){
			document.getElementById("m"+i).className='txt_header11';
		}else{
			document.getElementById("m"+i).className='a:hover';
		}
	}
}



