jQuery(document).ready(function($){
	$('form input#UserBorn').mask('99/99/9999', {placeholder: ' '});
	$('form input#UserPhone').mask('(99) 9999-9999', {placeholder: ' '});
	
	$('form select#UserActivity').bind('change', function(){
		if ($(this).val() == 'Revendedora' || $(this).val() == 'Gerente de Setor' || $(this).val() == 'Gerente de Vendas') {
			$('form .identification').show();
		} else {
			$('form .identification').hide();
		};
	});
	
	$('form .identification.error').show();
	
	
	$('#wrapper #content #left_side form .btn_enviar').find('input').mouseover(					
			function(e) {					
			 $(this).stop().animate({
				opacity:0						
			 }, 1000, "easeOutBack");
		});
		
		$('#wrapper #content #left_side form .btn_enviar').find('input').mouseout(
			function(e) {
				 $(this).stop().animate({opacity:1}, 800, "easeOutQuart");
		});
		
	
});