Cufon.replace("#navigation ul li a", {hover: true});

function doResize() {
	var current_height = $(document).height();
	var new_height = parseInt(current_height)-445;
	
	$("#backgroundoverlay").css("height", new_height+"px");
}

$(document).ready(function() {
	
	doResize();

	$(".logo").click(function() {
		document.location="/";
	});

	window.onresize = doResize;
});
