$(document).ready(function () {

	var jb = $("#board");
	var wh = $(window).height();
	var bh = jb.height();


	if(bh<wh) jb.height(wh);

});