$(document).ready(function() {
	$("#content-wrap").css({ opacity: 0.8 });
	$("#in-wrap").css({ opacity: 1});
	
	window.setTimeout("showPage()", 1200);
});

displayPastShows = function() {
	if ($("#past-shows").is(":hidden")) {
		$("#past-shows").slideDown("slow");
		$("#past-shows-label").html(function() { return '> Hide past shows' });		
	} else {
		$("#past-shows").slideUp("fast");
		$("#past-shows-label").html(function() { return '> Show past shows' });	
	}
}

showPage = function() {
	$("#overlay").fadeOut(1400, function() {
		$("#overlay").hide();
	});
}
