$(document).ready(function() {
	$("#content div").hide();
	$("#aboutreiki").show();
	
	$("#nav a").click(function() {
		var $show = $(this).attr("href");
		$("#content div:visible").fadeOut("slow", function() {
			$($show).fadeIn("slow");
			return false;
		});
	});
	
});