function load(page) {
	$('#filler').hide('slow');
	$('#content').html('<div class="center"><img src="./images/loader.gif"/></div>');
	page += ".php";
	$('#content').load(page).hide().fadeIn("slow");
}

function start() {
	$('#filler').show('slow');
	$('#content').hide('slow');
}

