$(function()
{
	var $containers = $('#content > div');
	var $tabs       = $('#navigation a');
	var $tab        = window.location.hash
		? $tabs.filter('[href="'+window.location.hash+'"]')
		: $tabs.eq(0);

	// Initialize our very simple tab system
	$tabs.click(function()
	{
		var $this = $(this);
		
		// Remove selected class
		$tabs.removeClass('selected');
		$this.addClass('selected');
		
		// Show proper panel
		$containers.hide();
		$($this.attr('href')).fadeIn();
		
		return false;
	});

	$tab.click();
});

