function showStuff() {
	warning = $('warning');
	unhide = $('main');
	if (warning) {
		warning.effect = new Fx.Styles(warning,{unit:'%', onComplete: function () {warning.remove();}});
		warning.effect.custom({'marginLeft':[0,50]});
		
		unhide.setStyles({'display':'block','opacity':0, 'overflow':'hidden', 'min-height':'10%', 'height':'10%'});

		unhide.effect = new Fx.Styles(unhide,{unit:'%', onComplete: function() {
			unhide.setStyles({'min-height':'100%', 'height':'auto'});
			$('footer').setStyle('display','block');
		}});
		unhide.effect.custom({'opacity':[0,1],'height':[10,100],'marginLeft':[-100,0]});
	} else if (unhide) {
		unhide.setStyle('display','block');
		$('footer').setStyle('display','block');
	}
	Cookie.set ("sexOK","yes");
}

function doWarning() {
	if (Cookie.get("sexOK") == "yes") {
		showStuff();
	} else {
		var warning = document.createElement("div");
		warning.setAttribute ('id','warning');
		warning.innerHTML = "<div><h1>Warning!</h1>This section contains cartoon nudity. If your local community standards do not allow you to legally see drawings of breasts or penises, please go to another section of my site, or elsewhere.<br><a href='#' onclick='showStuff(); return false;'>The law says I can see naked people.</a></div>";
		document.body.insertBefore(warning,document.getElementById("main"));
	}
}

Window.onDomReady(doWarning);
