$(document).ready(function() {
	// Attach onclick handler to show/hide link
	$("#show-hide > a").click(function() {
		if ($("#header-bottom").is(":hidden")) {
			$("#header-bottom").slideDown();
			$("#show-hide > a").html('Hide this crap');
		} else {
			$("#header-bottom").slideUp();
			$("#show-hide > a").html('Show me more!');
		}
	});
});
