// JQUERY FULL-HEIGHT SCRIPT by Mpc
$(document).ready(fullheight);
$(window).resize(fullheight);

function fullheight(){
	var elSpacer = $('#site-spacer');
	elSpacer.height(0);
	
	var wHeight = $(window).height(); // Window Height
	var tbHeight = $('#table-body').height(); // Table body Height
	
	var diff = wHeight - tbHeight;
	
	if (diff > 0){
		elSpacer.height(diff + elSpacer.height());
	}
}
