/*
   Copyrights (C) 2008 David Esperalta <david.esperalta@gmail.com>

   This file is part of Gesbit. Gesbit is free software: you can 
   redistribute it and/or modify it under the terms of the GNU General 
   Public License as published by the Free Software Foundation, either 
   version 3 of the License, or (at your option) any later version.

*/

// DOM ready!
$(function(){
  GbForm.FocusFirstInput();
});

GbForm = {
  
  FocusFirstInput : function(){
    $("input:visible:enabled:first").focus();
    return true;
  }
  
}; // GbForm
