$(document).ready(function() {
	//var speed = 300;

	$("div#dynamic-menu").load("php/menu.php", {}, function(){$(this).show()});

	if (window.location.hash) {
		var pass = window.location.hash.replace(/^.*#/, "")
		loadContent(pass);
	} else {
		loadContent('/');
	}

	$("a.menu-link").live('click', function () {
		var pass = $(this).attr("href").replace(/^.*#/, "")
		loadContent(pass);
	});

	function loadContent(pass) {
		if (pass != "/") {
			$("h2#content-header").text(pass);
			$("h2#content-header").css("margin-bottom", "8px");
		}
		$("div#dynamic-content").text("");
		$("div#dynamic-content").load("php/content.php", {x: pass});
	}
});

$(window).load(function () {
});