$(document).ready(function() {
  $("input").each(function(){
    if ( !$(this).is(":hidden") && !$(this).is("@type=[button|submit]") ) {
      this.focus();
      return false;
    }
  });
} );
