$(function() {
  $('.innerText').tooltip({ 
    delay: 100, 
    showURL: false, 
    bodyHandler: function() { 
        return $(this).html(); 
    } 
  });
  $("#donator-surname").click(function(){
    $(this).val("");
    $(this).unbind("click");
  });
  $("#donator-name").click(function(){
    $(this).val("");
    $(this).unbind("click");
  });
  $(".columnN").click(function(){
    
    $('html,body').animate({scrollTop: $("#donation-amount").offset().top-200}, 1000, function(){
      $("#donation-amount").focus();
    $("#donation-amount").stop()
                .animate({ left: "-5px" }, 100).animate({ left: "5px" }, 100)
                .animate({ left: "-5px" }, 100).animate({ left: "5px" }, 100)
                .animate({ left: "0px" }, 100)
                .addClass("required");
    
    });   
    
  });
  $("#image-donation-submit").click(function() {
    
    if ($("#donation-amount").val() == '') {
        $("#donation-amount").stop()
                .animate({ left: "-5px" }, 100).animate({ left: "5px" }, 100)
                .animate({ left: "-5px" }, 100).animate({ left: "5px" }, 100)
                .animate({ left: "0px" }, 100)
                .addClass("required");
        return false;
    }
}); 
  var loc = window.location;
  if ((loc+'').indexOf("[result]=error" )>0){
    $('html,body').animate({scrollTop: $("#donation-amount").offset().top-200}, 1000);
  }
  
  });
