// JavaScript Document

$(function() { 
	var wheight = $(window).height();   // returns height of browser viewport
	//var dheight = $(document).height(); // returns height of HTML document
	
	wheight = wheight - 110 - 35;
	$('.blokcont').css({height:wheight});
	
	});
