function post()
{
		menu=document.getElementsBySelector("ul.posts");
		for(i=0; i<menu.length; i++){						
			menu[i].getElementsByTagName("a").item(0).style.background='url(\'http://cfs.tistory.com/custom/blog/0/472/skin/images/01.gif\') no-repeat';
			menu[i].getElementsByTagName("a").item(1).style.background='url(\'http://cfs.tistory.com/custom/blog/0/472/skin/images/02.gif\') no-repeat';
			menu[i].getElementsByTagName("a").item(2).style.background='url(\'http://cfs.tistory.com/custom/blog/0/472/skin/images/03.gif\') no-repeat';
			menu[i].getElementsByTagName("a").item(3).style.background='url(\'http://cfs.tistory.com/custom/blog/0/472/skin/images/04.gif\') no-repeat';
			menu[i].getElementsByTagName("a").item(4).style.background='url(\'http://cfs.tistory.com/custom/blog/0/472/skin/images/05.gif\') no-repeat';
			menu[i].getElementsByTagName("a").item(5).style.background='url(\'http://cfs.tistory.com/custom/blog/0/472/skin/images/06.gif\') no-repeat';
			menu[i].getElementsByTagName("a").item(6).style.background='url(\'http://cfs.tistory.com/custom/blog/0/472/skin/images/07.gif\') no-repeat';
			menu[i].getElementsByTagName("a").item(7).style.background='url(\'http://cfs.tistory.com/custom/blog/0/472/skin/images/08.gif\') no-repeat';
			menu[i].getElementsByTagName("a").item(8).style.background='url(\'http://cfs.tistory.com/custom/blog/0/472/skin/images/09.gif\') no-repeat';
			menu[i].getElementsByTagName("a").item(9).style.background='url(\'http://cfs.tistory.com/custom/blog/0/472/skin/images/10.gif\') no-repeat';		
			menu[i].getElementsByTagName("a").item(0).style.color="#b00b00";
			menu[i].getElementsByTagName("a").item(1).style.color="#b00b00";
			menu[i].getElementsByTagName("a").item(2).style.color="#b00b00";
			}
}
function showMenu(id_menu){
	var my_menu = document.getElementById(id_menu);
	if(my_menu.style.display=="none" || my_menu.style.display==""){
		my_menu.style.display="block";
		} else { 
		my_menu.style.display="none";
		}
}
function swapImage(idStatus){
	if(idStatus==0){
		document.arrow_profile.src ="./images/arrow_hover.png";
	} else if(idStatus==1){
		document.arrow_profile.src ="./images/arrow_select.png";
	} else if(idStatus==2){
		document.arrow_profile.src ="./images/arrow.png";
	}	
}

