jQuery(document).ready(function() {
	var active, items = $('#content > div'), links = $('#sidebar a');
	active = items.eq(0);
	items.hide();
	links.eq(0).addClass('active');
	items.eq(0).show();
	$('#content').show();
	links.click(function() {
		var e = $(this);
		links.removeClass('active');
		e.addClass('active');
		active.fadeOut('normal', function() {
			active = $(e.attr('href'));
			active.fadeIn();
		});
		return false;
	});
});
