$(document).ready(function(){
	$("div#header span a").toggle(function(){
		$("div#nav").show();
	}, function(){
		$("div#nav").hide();
	});
	$("div#nav").hide();
	$("div.article").columnize({width:300});
	$("div.article div.column").each(function(){
		$(this).children(":first").each(function(){
			if (this.tagName.toUpperCase() == "H3") {
				$(this).css("margin-top", "0");
			}
			if ($(this).text().substr(0, 1)  == " " && this.tagName.toUpperCase() == "P") {
				$(this).css("text-indent", "0");
			}
		});
	});
	$("div.fade div:first-child").height($("div.fadeTo").height() - 20);
	$("div.fade div.fader").css("top", ($("div.fadeTo").height() - 50) + "px");
	if ($("div#footer a").length < 1) {
		$('<a href="http://xavoy.com/">&#171; Back Home</a>').appendTo("div#footer");
	}
});
