var head = document.getElementsByTagName('HEAD')[0];
head.appendChild(appendscript('acesso.js'));
head.appendChild(appendscript('anais.js'));
head.appendChild(appendscript('boletim.js'));
head.appendChild(appendscript('brasil.js'));
head.appendChild(appendscript('busca_avancada.js'));
head.appendChild(appendscript('cadastro.js'));
head.appendChild(appendscript('enquete.js'));
head.appendChild(appendscript('eventos.js'));
head.appendChild(appendscript('faleconosco.js'));
head.appendChild(appendscript('forum.js'));
head.appendChild(appendscript('fotos.js'));
head.appendChild(appendscript('imprensa.js'));
head.appendChild(appendscript('impressao.js'));
head.appendChild(appendscript('indique.js'));
head.appendChild(appendscript('mensagens.js'));
head.appendChild(appendscript('pre_carregamento.js'));
head.appendChild(appendscript('sublinks.js'));
head.appendChild(appendscript('tamanho.js'));

function appendscript(src) {
	var script = document.createElement('SCRIPT');
	script.type = 'text/javascript';
	script.src = '_js/' + src;
	
	return script;
}