function _(id) {
	return document.getElementById(id);
}


function show_submenu(id) {
	if (_('submenu' + id))
		_('submenu' + id).style.display = 'block';
}

function hide_submenu(id) {
	if (_('submenu' + id))
		_('submenu' + id).style.display = 'none';
}


function show_contact() {
	_('contact').style.display = (_('contact').style.display == 'block' ? 'none' : 'block');
}

function show_acesso() {
	_('acess').style.display = (_('acess').style.display == 'block' ? 'none' : 'block');
}


function externalLinks() {
	if (!document.getElementsByTagName) return;
	var anchors = document.getElementsByTagName("a");
	for (var i=0; i<anchors.length; i++) {
		var anchor = anchors[i];
		if (anchor.getAttribute("href") && anchor.getAttribute("rel") == "external") {
			anchor.target = "_blank";
		}
	}
}
window.onload = externalLinks;
