function initNavigation()
{
 	$("#navigation li a").click(function(){
		navigate($(this).attr("href"));
	});
	navigate(document.location.hash);
}
function callback(hash)
{
    navigate(hash);
}
function navigate(hash)
{
	if (hash=='') 
		navigate("#home");
	else
	{
		$("#mainContent .main").each(function(i){
			if ($(this).css("display")=="block" && hash.indexOf($(this).attr("id"))<0)
			{
				$(this).fadeOut("fast");
			}
			else
			{
					if (hash.indexOf($(this).attr("id"))>-1) 
					$(this).fadeIn("fast");
			}
		})
	}
}

