// JavaScript 

function clearSearch() {
	document.search.searchBox.value = "";
}

/*

function showContent() {
	$("#home #content").css("margin-top","72px");
	// Nest callbacks so they execute sequentially.
	// Wait 1 second then fade in the rest.
	$("#home #content").delay(1000).fadeIn(500, function() {
		$("#home #footer").show(0, function() {
			// Simultaneously pop in the footer and fade in the content
			$("#home #content").css("margin-top","-35px");
			$("#home #nav").fadeIn(1750, function() {
				var new_height;
				new_height = $(document).height() + "px";
				$("html").css("height",new_height);
			});
		});
	});
}

$(document).ready(function(){
	showContent();
});

*/

