var height = $(document).height();
$('#navigation').height(height);
$(window).resize(function(){
	var height = $(document).height();
	$('#navigation').height(height);
});
