function equalizeFooter () {
	// var heightSidebar = $(".banquet-sidebar").height();
	// 	var heightContent = $(".banquet-content").height();
	// 	
	// 	console.log ($(".banquet-sidebar").height());
	// 	
	// 	if (heightContent < heightSidebar) {
	// 		$(".banquet-content").css("height", heightSidebar);
	// 	}
	// 
	// 	console.log ($(".banquet-content").height());
	
	var sidebar = $(".banquet-sidebar");
	var footer = $(".bottomtext");
	
	var sidebarBottom = sidebar.position().top + sidebar.height();
	var footerBottom = footer.position().top + footer.height();
	
	console.log (sidebarBottom);
	console.log (footerBottom);
	
	if (footerBottom < sidebarBottom) {
		footer.css("padding-top", sidebarBottom - footerBottom + 40 + "px");
	}
	
	// if (content.height() < sidebar.height()) {
	// 		$(".banquet-content p:last").css({
	// 			"background": "#0f0"
	// 		});
	// 		console.log ("hello");
	// 	}
}