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