$(document).ready(function() {
	if(window.location.hash) {
		var page = window.location.hash.split("#")[1];
		if(page) {
			loadPage(page);
		}
	} else {
		loadPage("home.html");
	}
});

function queryServer(sFunction, sVars, callback) {
	$.post("index_ajax.php", {
		"func": sFunction,
		"vars": sVars
	}, function(data) {
		console.log(data);
		callback(data);
	}, "json");
}