// JavaScript Document
function hidestart() {
	$("#start").fadeOut("slow", function() {
		window.location="index.php?d=home";
	});
}

function showpic(id) {
	//document.getElementById('home').style.display="none";
	//$("#pics div:visible").fadeOut("fast", function(event){
	//	$("#"+id).fadeIn("fast");
	//});
	$("#pics div:visible").css("display", "none");
	$("#"+id).css("display", "block");
}

