$(function() {
	// Move Área Restrita
	var move = 0;
	$('.moveBox').click(function(){
		if(move == 0){
			move = 1;
			$('.boxAreaRestrita').animate({
				top:'0px'
			},500);
		}else{
			move = 0;
			$('.boxAreaRestrita').animate({
				top:'-151px'
			},500);
		}
	});
	
	// Box Fundo Branco
	$('#bg-branco').click(function(){
		$(this).hide();
		$("#boxDepoimento").hide();
	});
	
	$('.btOk').click(function(){
		var emailWM = $('input[name=login_username]').val();
		var senhaWM = $('input[name=secretkey]').val();
		if(emailWM != '' && senhaWM != ''){
			$('form[name=webMail]').submit();
			return true;
		}else{
			alert('Por favor, preencha todos os campos.');
			return false;
		}
	});
});
