jQuery(function(){
jQuery('#botao_optin').hover(
	function(){
		$('#optin')
			.animate({height: "250px"}, { queue:false, duration: 700 });
		},
	function () { 
		$('#optin')
			.animate({height: "1px"}, { queue:false, duration: 700 });
      } 
	)
})
