$(function(){
	/// when aside-toggle is clicked, slide toggle its aside-content
	$(".aside-box-header").click(function(){
		$(this).siblings(".aside-box-content").slideToggle();
		$(this).toggleClass("on");
		return false;
	});
	
	//$("#register").click();
	
	
	/// signin
	//$("#signed-in").hide();
//	$("form#sign-in").submit(function(){ 
//		$("#header-middle-right").removeClass("mainpage").addClass("mainpage-signed-in"); 
//		$(this).hide();$("#signed-in").fadeIn();
//		return false;
//	});
	
	/// table filter
	//$("tr#table-filter-row").hide();
	//$("#btn-filter").click(function(){$("#table-filter-row").show(); $(this).hide();return false;});
	//$("#close-filter").click(function(){$("#table-filter").hide(); return false;});
	
	/// table msg
	$("#table-msg").hide();
	$("tr#table-categories").hover(
		function(){$("#table-msg").fadeIn();},
		
		function(){$("#table-msg").fadeOut();}
	);
	
	
});

