//
function func_desbloquear () {
	
	//
	$.unblockUI();
	$('#id_usuario').val('');
	$('#id_senha').val('');
	alert('Usuário e senha não correpondem!');
}

$(document).ready(function() {
	// Define formatação quando houver evento focu no input.
	$('input').focus( function() {
		$(this).css('background-color', '#A3DE81');
	});
	$('input').blur( function() {
		$(this).css('background-color', '#FFFFFF');
	});

	// Define formatação quando houver evento focu no input.
	$('textarea').focus( function() {
		$(this).css('background-color', '#A3DE81');
	});
	$('textarea').blur( function() {
		$(this).css('background-color', '#FFFFFF');
	});
	
	//
	$('#btn_entrar').click( function() {
		
		//
		$.blockUI({ message: '<h1> <img src="images/bigWaiting.gif"> Processando ... </h1>' });
		setTimeout('func_desbloquear()', 3000);
	});
	
	$('#home').click( function() {
		alert('em construção');
	});
	$('#servicos').click( function() {
		parent.if_corpo.location.href = "servicos.html";
	});
	$('#parceiros').click( function() {
		parent.if_corpo.location.href = "parceiros.html";
	});
	$('#downloads').click( function() {
		parent.if_corpo.location.href = "download.html";
	});
	$('#faleconosco').click( function() {
	  parent.if_corpo.location.href = "faleconosco.html";
	});
	$('#informativo').click( function() {
		alert('em construção');
	});
	$('#contatos').click( function() {
		parent.if_corpo.location.href = "contatos.html";
	});
	
});