// JavaScript Document
$(document).ready(function(){
	dropDownMenu('/posttoday');
});

function dropDownMenu(url){
	$("#slide_dropDownTab").toggle(
		function (){
			$("#dropDownMenu").slideDown(100);
			$(this).removeClass("dropDownTab");
			$(this).addClass("activeDropDown");
			$("#slide_dropDownTab img").attr({src:url+'/images/icon/dropDown-upArw.gif'});
			//images/icon/dropDown-upArw.gif
		},
		function (){
			$("#dropDownMenu").slideUp(100);
			$(this).removeClass("activeDropDown");
			$(this).addClass("dropDownTab");
			$("#slide_dropDownTab img").attr({src:url+'/images/icon/dropDown-downArw.gif'});
		}
	);
}
