/* Oxford Friend Javascript */
$(function(){
  /* Make ReCaptcha links have tooltips and open in new windows */
  $('a[href^="http://www.google.com/recaptcha/mailhide"]').tooltip({
    position: 'bottom center'
  }).click(function(){
    window.open($(this).attr('href'), '', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=500,height=300');
    return false;
  });
});
