$(document).ready(function() 
{
	
	$('#header li[title=home]') .addClass('current');

	$('#header li')
	.hover(function()
	{
	    $(this).addClass('hover');
  	}, function() 
	{
    	$(this).removeClass('hover');
  	});

	$(function()
	{
		$('#header li')
		.click(function(event)
		{
			var currentNav = $('#mainContent div:visible');
			var newNav = $(this) .attr('title');
			$('#header li') .removeClass('current');
			$(this) .addClass('current');
			$(currentNav) .fadeOut('slow', function()
			{
				$('#'+newNav) .fadeIn('slow');
			});
		});
	});
});

