// reCAPTCHA Scripts

$(document).ready(function() {
  
  // Clear the values for styling:
  $("input[value='Reload']").val(''); // Reload button
  $("input[value='Get Audio']").val(''); // Get Audio button
  $("input[value='Get Image']").val(''); // Get Text button
  
  // Styles for new 'button'
  var helpCSS = {
    'position':    'absolute',
    'top':      '104px',
    'left':      '186px',
    'cursor':    'pointer'
  }
  $('#recaptcha_widget').append('<img id="helpLink" src="/recaptcha-help.gif" alt="Help" />')
  $('#helpLink').css(helpCSS);
  $('#helpLink').click(function() {
    window.open('http://recaptcha.net/popuphelp/', 'window2', 'width=460, height=570, menubar=no, scrollbars=yes, resizable=yes, status=yes, toolbar=no');
  });
});

