$(document).ready(function(){
		$(window).bind("load", function(){							
			var windowHeight = $(window).height();
			
			if(windowHeight > 1050){
				$("#alignment_wrapper").css("height", (1060+"px"));
			}
			else{
				$("#alignment_wrapper").css("height", (100+"%"));
			}
			
			$(window).resize(function(){
				windowHeight = $(window).height();
				
				if(windowHeight > 1050){
					$("#alignment_wrapper").css("height", (1060+"px"));
				}
				else{
					$("#alignment_wrapper").css("height", (100+"%"));
				}
			});
		});
});
