$(document).ready(function(){
$('body').addClass('java');

$('li.delete a').click(function() {
  $(this).unbind();
  $(this).text('Click again to delete');
  return false;
});

$('form').submit(function() {
  var missing = 0;
  $('form input.req').each(function() {
    if($(this).val().length < 2) {
      ++missing;
      $(this).css('background','#ffcccc').css('border','2px solid #e7131c');
    }
  });
  if(!missing) {
    $('input, textarea, select').attr('readonly','readonly');
    $(this).find('input.submit').val('Processing...');
  } else {
    alert('It looks like some of the form has not been filled out.  Please go back and fill in the highlighted feilds.  Thanks!');
    return false;
  }
});

});