function resizeBorder() {
	if ($(window).height() < $('#content').height() + 157) {
		var diff = $('#content').height() + 157 - $(window).height();
		var newHeight = $(window).height() + diff
		$('#border').height(newHeight);
	} else {
		$('#border').height('100%');
	}
}
/*
$(document).ready(function() {
	
});
*/