$(document).ready(function(){
function recenter(){
	body_width = $(window).width();
	body_height = $(window).height();
if(body_width<=1000){
	$(document).width(1000);
	marginleft = -body_width/2-1;
	$("#page").css("left",-marginleft);
	$("#page").css("margin-left",marginleft);
	$("#btm_text").css("left",-marginleft);
	$("#btm_text").css("margin-left",marginleft);
	
}else{
	$("#page").css("left","50%");
	$("#page").css("margin-left","-501px");
	$("#btm_text").css("left","50%");
	$("#btm_text").css("margin-left","-501px");
}
if(body_height<=480){
	marginheight = -body_height/2-1;
	$("#page").css("top",-marginheight);
	$("#page").css("margin-top",marginheight);
}else{
	$("#page").css("top","50%");
	$("#page").css("margin-top","-241px");
}
if(body_height<=500){
	$("#btm_text").css("display","none");
}else{
	$("#btm_text").css("margin-top","240px");
	$("#btm_text").css("top","50%");
	$("#btm_text").css("display","");	
}

}
recenter();
$(window).resize(function(){recenter();});
});
