$(document).ready(function() {
	$('#mainimage').hide().fadeIn(600);
	

	jQuery.fn.fadeToggle = function(speed, easing, callback) {
	  return this.animate({opacity: 'toggle'}, speed, easing, callback);
	};

	
	$('#cats-link').click(function(e) {
		e.preventDefault();
		if ($('#categories').is(':hidden')) {
			$('#header_bottom').hide();
		} else {
			$('#header_bottom').show();
		}
		$('#categories').fadeToggle();
	});
	
	$('#cats-link-close').click(function(e) {
		e.preventDefault();
		$('#categories').fadeToggle();
		$('#header_bottom').show();
	});
	
	$('#leavecomment').click(function(e) {
		e.preventDefault();
		$('#commentbox').fadeToggle('fast');
		if ($('#nocomments').is(':hidden')) {
			$('#leavecomment').show('fast');
			$('#nocomments').show('fast');
		} else {
			$('#nocomments').hide('fast');
			$('#leavecomment').hide('fast');
		}
	});
	
	$('#cancel').click(function(e) {
		e.preventDefault();
		$('#commentbox').fadeToggle('fast');
		if ($('#nocomments').is(':hidden')) {
			$('#nocomments').fadeToggle('fast');
			$('#leavecomment').fadeToggle('fast');
		} else {
			$('#nocomments').hide('fast');
			$('#leavecomment').hide('fast');
		}
	});
	
});
