$(document).ready(function () {
	check_heights()
});


window.onresize = function(){
	check_heights()
	resize_screen()
}

function check_heights(){
	//Page height
	if($(window).height() > 900){
		$("body").css({
			//backgroundImage: "url(../images/home_bg.jpg)",
			backgroundPosition: "center bottom",
			height: "100%",
			overflow: "hidden"
		})
		$("html").css({
			height: "100%"
		})

		//507
		$("#features").css({
			marginTop: parseInt($(window).height()) - 640
		})
	}
	else{
		$("body").css({
			//backgroundImage: "url(../images/home_bg.jpg)",
			backgroundPosition: "center 10px",
			height: "auto",
			overflow: "auto"
		})
		//507
		$("#features").css({
			marginTop: 250
		})
	}
	
}