//$(document).ready(function() {
	$(window).bind("load" , function() {
  		var winh = $(window).height()-7;
		$(".scroll").height(winh)
	});
	$(window).bind("resize" , function() {
  		var winh = $(window).height()-7;
		$(".scroll").height(winh)
	});
//});
