//if JS is allowed center the page
$(document).ready(function() {
	$("div.page").css("left", $(window).width()<810?5: ($(window).width()/2)-400);
});

//center site after resize
$(window).resize(function() {
	$("div.page").css("left", $(window).width()<810?5: ($(window).width()/2)-400);
	});
