$.fn.adaptBS = function(o)
{
	s = (window.innerHeight) ? window.innerHeight : document.body.clientHeight;
	a = $("#page").height();
	if (s > o && a < s)
	{
	    $("#page").height(s + "px");
	}
};