$(document).ready(function()
{
	$('.fade-content:not(:first)').hide();
	$("a.fade-link").click(function()
    {
	$('.fade-content').fadeOut("slow");
	$($(this).attr("href")).fadeIn("slow");
	});
});