$(function(){ 

	$("#outdatedOverlay").css("height", $(document).height());

	if($.browser.msie && $.browser.version<9.0 ) {
		$("#outdatedOverlay").fadeIn();
	}
	
	$(".outdatedClose").click(function(){
		$("#outdatedOverlay").fadeOut();
	});
	
	$("#resolutionOverlay").css("height", $(document).height());
	
	var sw = window.screen.width;
	
	if(sw<1200){
		$("#resolutionOverlay").fadeIn();
	}
	
	$(".resolutionClose").click(function(){
		$("#resolutionOverlay").fadeOut();
	});
	
});

$(window).bind("resize", function(){
	$("#outdatedOverlay, #resolutionOverlay").css("height", $(window).height());
});
