
	(function($) { 
		$(function() { // No carregamento da página...
			$('div.module', '#barraAzulHome_UltimasNoticas').vTicker({
				height     : 0,
				speed      : 500,
				direction  : 'up',
				pause      : 3000,
				mousePause : true,
				animation  : 'fade'
			});
		});
	})(jQuery);

	function validarportal(form){
		var inputSenha = document.getElementById('esenha');
		inputSenha.value = hex_md5(inputSenha.value);
		return true;		
	}
	
	function logonForm_onsubmit(){
		var inputLogin = document.getElementById('username');
		if (inputLogin.value.indexOf("@") !=-1){
			return true;
		}
		inputLogin.value = "uneb\\" + inputLogin.value;
		return false;
	}
