// JavaScript Document
function init() {
	if (window.innerWidth == undefined) {
		if (document.body.clientWidth < 1000) {
			document.getElementById('page').style.marginLeft = "-379px"; 
			document.getElementById('footer').style.marginLeft = "-379px"; 
		}
	} else {
		if (window.innerWidth < 1000) {
			document.getElementById('page').style.marginLeft = "-379px"; 
			document.getElementById('footer').style.marginLeft = "-379px"; 
		}
	}
}
