$(document).ready(function() {
  $('#content a[href^="http://"]').click(function() { window.open($(this).attr('href')); return false; })

  $('#content form#contact input:first').focus();

  $('#content form#contact .thanks').hide().fadeIn(500);
  $('#content form#contact .error').hide().fadeIn(500);
});


