// JavaScript Document

window.onload = start;
window.onresize = bg;

function start() {
	bg();
	contact();
}

function bg() {
	if (window.innerWidth < 1000) document.getElementsByTagName('body')[0].style.backgroundImage = 'none';
	else document.getElementsByTagName('body')[0].style.backgroundImage = 'url(images/bg.jpg)';
}

function contact() {
	if (document.getElementById('email') != null) document.contact_form.email.focus();
}
