// BackGround Fix to lock to bottom of the page

$(document).ready(function () {
	setBackGround();				
	 setTimeout(setBackGround,1000);
});
$(window).resize(function() {
	setBackGround();
	}
)
function setBackGround() {
	if ($(document).height() > ($("#wrapper").height() + 96)) {
		$("#grass").addClass("bigscreen");
	} else {
		$("#grass").removeClass("bigscreen");
	}
}