$(function(){

  // Entenda1
	$('#bt_entenda').mouseover(function(e){
	  e.preventDefault();	  
    $('#entenda').fadeIn();    
	});
  $('#bt_entenda').mouseout(function(e){
	  e.preventDefault();	  
    $('#entenda').fadeOut();    
	});

  // Entenda2  
  $('#bt_entenda2').mouseover(function(e){
	  e.preventDefault();	  
    $('#entenda2').fadeIn();    
	});
  $('#bt_entenda2').mouseout(function(e){
	  e.preventDefault();	  
    $('#entenda2').fadeOut();    
	});
  
  // abremodal
  $('#bt_saibamodal').click(function(e){
	  e.preventDefault();	  
    $('#bg_fade, #maismodal').fadeIn();    
	});
  
  // fechamodal
  $('#bg_fade').click(function(e){
	  e.preventDefault();	  
    $('#bg_fade, #maismodal').fadeOut();    
	});


	/*==============================*/
	/*	INPUT TEXT AUTO
	/*==============================*/
	$('input.auto').focus(function(){
		var texto = this.title;
		if(this.value == texto) this.value='';
		$(this).blur(function(){
			if(this.value == '') this.value=texto;
		});
	});

})
