function select_box_aluno() {
	
	aba_aluno = document.getElementById('abaaluno');
	aba_professor = document.getElementById('abaprofessor');
	aba_exaluno = document.getElementById('abaexaluno');
	
	box_aluno = document.getElementById('boxaluno');
	box_professor = document.getElementById('boxprofessor');
	box_exaluno = document.getElementById('boxexaluno');
	
	aba_aluno.style.backgroundImage = 'url("/goto/store/temas/imagenet/images/abas_aluno_on.gif")';
	aba_professor.style.backgroundImage = 'url("/goto/store/temas/imagenet/images/abas_professor_off_aluno.gif")';
	aba_exaluno.style.backgroundImage = 'url("/goto/store/temas/imagenet/images/abas_exaluno_off.gif")';
	
	box_aluno.style.display = '';
	box_professor.style.display = 'none';
	box_exaluno.style.display = 'none';
	
}

function select_box_professor() {
	
	aba_aluno = document.getElementById('abaaluno');
	aba_professor = document.getElementById('abaprofessor');
	aba_exaluno = document.getElementById('abaexaluno');
	
	box_aluno = document.getElementById('boxaluno');
	box_professor = document.getElementById('boxprofessor');
	box_exaluno = document.getElementById('boxexaluno');
	
	aba_aluno.style.backgroundImage = 'url("/goto/store/temas/imagenet/images/abas_aluno_off.gif")';
	aba_professor.style.backgroundImage = 'url("/goto/store/temas/imagenet/images/abas_professor_on.gif")';
	aba_exaluno.style.backgroundImage = 'url("/goto/store/temas/imagenet/images/abas_exaluno_off.gif")';
	
	box_aluno.style.display = 'none';
	box_professor.style.display = '';
	box_exaluno.style.display = 'none';
	
}

function select_box_exaluno() {
	
	aba_aluno = document.getElementById('abaaluno');
	aba_professor = document.getElementById('abaprofessor');
	aba_exaluno = document.getElementById('abaexaluno');
	
	box_aluno = document.getElementById('boxaluno');
	box_professor = document.getElementById('boxprofessor');
	box_exaluno = document.getElementById('boxexaluno');
	
	aba_aluno.style.backgroundImage = 'url("/goto/store/temas/imagenet/images/abas_aluno_off.gif")';
	aba_professor.style.backgroundImage = 'url("/goto/store/temas/imagenet/images/abas_professor_off_exaluno.gif")';
	aba_exaluno.style.backgroundImage = 'url("/goto/store/temas/imagenet/images/abas_exaluno_on.gif")';
	
	box_aluno.style.display = 'none';
	box_professor.style.display = 'none';
	box_exaluno.style.display = '';
	
}