function backgrounds () {
	
	var bg = new Array()
	bg[0] = "images/bg/bg1.jpg"
	bg[1] = "images/bg/bg2.jpg"
	bg[2] = "images/bg/bg3.jpg"
	bg[3] = "images/bg/bg4.jpg"
	bg[4] = "images/bg/bg5.jpg"
	bg[5] = "images/bg/bg7.jpg"
	bg[6] = "images/bg/bg8.jpg"
	bg[7] = "images/bg/bg9.jpg"
	bg[8] = "images/bg/bg10.jpg"
	bg[9] = "images/bg/bg11.jpg"
	bg[10] = "images/bg/bg12.jpg"
	bg[11] = "images/bg/bg13.jpg"
	bg[12] = "images/bg/bg14.jpg"
	bg[13] = "images/bg/bg15.jpg"
	
	var rodando = Math.floor(Math.random() * bg.length)
	
	document.body.style.background = "url(" + bg[rodando] + ") repeat-y fixed"
	
}

function validaContato() {
	with (document.form_contato) {
		if(nome.value.length == 0) {
			alert('Digite seu nome, por favor.');
			nome.focus();
			return false
		}
				
		if(email.value.length == 0) {
			alert('Digite seu e-mail, por favor.');
			email.focus();
			return false
		}
				
		if(ddd.value.length == 0) {
			alert('Digite o DDD, por favor.');
			ddd.focus();
			return false
		}
				
		if(tel.value.length == 0) {
			alert('Digite o telefone, por favor.');
			tel.focus();
			return false
		}
				
		if(assunto.value.length == 0) {
			alert('Digite o assunto, por favor.');
			assunto.focus();
			return false
		}
				
		if(mensagem.value.length == 0) {
			alert('Digite a mensagem, por favor.');
			mensagem.focus();
			return false
		}
		
		submit()
		
	}
}