jQuery(document).ready(function(){
   jQuery('form.auto-focus-form').each(function(){
           var t = jQuery(this).find('input[@type="text"]:first')
           if (t.length > 0) t.focus();
   });
});