$(document).ready(function () {
	var page = location.hash;
	if (page == ""){
		page = "#/home/";
	}
	getNewSection(page);
	makeNaviSelected(page);
	$("#navlist li").click(function () {
		var thisli = $(this);
		var thispage = thisli.find("a").attr("href");
		$("#navlist a").removeClass("selected");
		$('#section').slideUp("slow",function () {
			thisli.find("a").addClass("selected");
			getNewSection(thispage);
		});		
	});
});