/**
 * RunTrackr - Login/Register Common Scripts
 */

// Flag to indicate form's ready after data's been checked for
// user-friendliness.
var readyToSubmit = false;

jQuery(document).ready(function()
{
  // Highlight form fields.
  jQuery('input.text').focus(function(){jQuery(this).addClass('focus');});
  jQuery('input.text').blur(function(){jQuery(this).removeClass('focus');});

  // Remove the 'JavaScript not enabled' notice.
  jQuery('#javascript-disabled').css('display', 'none');

  jQuery('.ajax-loading').ajaxStart(function()
  {
    jQuery(this).show();
  });

  jQuery('.ajax-loading').ajaxStop(function()
  {
    jQuery(this).hide();
  });
});