$(document).ready(function() {

	jQuery.fn.slideFadeToggle = function(speed, easing, callback) {
		return this.animate({opacity: 'toggle', height: 'toggle'}, speed, easing, callback); 
	};

	$("#categories").hide();
	$("#nav_cat").click(function() {
		$("#categories").slideFadeToggle('slow');					
		return false;
	});
	
	$("#archives").hide();
	$("#arc_cat").click(function() {
		$("#archives").slideFadeToggle('slow');					
		return false;
	});

	$("#about_sub_link").hide();
    $("#about_sub_link").slideFadeToggle('slow');
	$("#about_link").click(function() {
		$("#about_sub_link").slideFadeToggle('slow');					
		return false;
	});
	

	
});