$(document).ready(function(){$(".donate a[href=#]").click(function(){var curr=$(this).get(0);$(".donation").each(function(){if($(this).get(0)!=curr){$(this).hide();}});target=$(this).parent().parent().next(".donation");target.show(300);var top=target.offset().top;$('html,body').animate({scrollTop:top},1000);return false;});$(".donation input.valor").focus(function(){$(this).val('');});$(".donation input.valor").keyup(function(){$(this).val($(this).val().replace(/\D/g,''));});$(".donation input.valor").keydown(function(){$(this).val($(this).val().replace(/\D/g,''));});$(".donation form").submit(function(){var valor=$(this).find("input.valor").first();if(valor.val()==''){alert('Atenção! O Valor está em Branco!');return false;}else{valor.val(valor.val()+'.00');}});});
