$(document).ready( function() {
   if( $("#email").val().length == 0 )
      $("#email").focus();
   else if( $("#password").val().length == 0 )
      $("#password").focus();
});

